Package daoTeste

Examples of daoTeste.AlunoDAO


    private PessoaController pessoaCtrl;
    private EnderecoController enderecoCtrl;
   
    public AlunoController() {
        this.aluno = new Aluno();
        this.alunoDAO = new AlunoDAO();
        this.listaDeAlunos = new ArrayList<Aluno>();
        this.pessoaCtrl = new PessoaController();
        this.enderecoCtrl = new EnderecoController();
    }
View Full Code Here


        this.enderecoCtrl = new EnderecoController();
    }
   
     public String getNovoCodigo() {
        String novoCodigo = "0";
        alunoDAO = new AlunoDAO();
        int codigo = alunoDAO.getMaiorCodigo() + 1;
        novoCodigo = String.valueOf(codigo);
        return novoCodigo;
    }
View Full Code Here

TOP

Related Classes of daoTeste.AlunoDAO

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.