Examples of AlunoDAO


Examples of dao.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

Examples of dao.AlunoDAO

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

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

Examples of daoTeste.AlunoDAO

        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
Copyright © 2018 www.massapi.com. 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.