Package dao

Examples of dao.EstagioDAO


    private EstagioDAO estagioDAO;
    private ArrayList<Estagio> listaDeEstagios;
   
    public EstagioController() {
        this.estagio = new Estagio();
        this.estagioDAO = new EstagioDAO();
        this.listaDeEstagios = new ArrayList<Estagio>();
    }
View Full Code Here


    }

    public String getNovoCodigo() {
        String novoCodigo = "0";
        if(GerenciadorDeConfiguracoesDoSistema.getUsarConexao()){
            estagioDAO = new EstagioDAO();
            int codigo = estagioDAO.getMaiorCodigo() + 1;
            novoCodigo = String.valueOf(codigo);
        }else
            JOptionPane.showMessageDialog(null, Strings.mensagemConexaoDesativada, Strings.tituloMessage, JOptionPane.INFORMATION_MESSAGE);
      
View Full Code Here

TOP

Related Classes of dao.EstagioDAO

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.