Package daoTeste

Examples of daoTeste.EstagioDAO


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


        this.estagioDAO = new EstagioDAO();
    }

    public String getNovoCodigo() {
        String novoCodigo = "0";
        estagioDAO = new EstagioDAO();
        int codigo = estagioDAO.getMaiorCodigo() + 1;
        novoCodigo = String.valueOf(codigo);
        return novoCodigo;
    }
View Full Code Here

TOP

Related Classes of daoTeste.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.