Package br.com.sistelecom.dao

Examples of br.com.sistelecom.dao.CargoDAOImpl


  public void limpar() {
    this.cargo = new Cargo();
  }
 
  public CargoDAOImpl getDao() {
    return new CargoDAOImpl();
  }
View Full Code Here


        super();
    }

  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
   
    Collection<CargoRelatorio> colecao = new CargoDAOImpl().listarParaRelatorio();
   
    InfoRelatorio<CargoRelatorio> info = new InfoRelatorio<CargoRelatorio>(request, response,this.getServletContext(), colecao, CAMINHO_RELATORIO_CARGO, null);
   
    try {
      SistelecomRelatorio.gerarRelatorio(info);
View Full Code Here

TOP

Related Classes of br.com.sistelecom.dao.CargoDAOImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.