Package daoTeste

Source Code of daoTeste.PessoaDAO

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package daoTeste;

import model.Pessoa;

/**
*
* @author clayton
*/
public class PessoaDAO {

    public Pessoa getPessoa(String codigo) {
        Pessoa pessoa = new Pessoa();
        pessoa.setCodigoPessoa(Integer.parseInt(codigo));
        return pessoa;
    }

    public int getMaiorCodigo() {
        int intCodigo = (int)(100 * Math.random());       
        return intCodigo;
    }

    public boolean salvar(Pessoa pPessoa) {
        return true;
    }

    public boolean atualizar(Pessoa pPessoa) {
        return true;
    }

    public boolean excluir(Pessoa pPessoa) {
        return true;
    }
}
TOP

Related Classes of daoTeste.PessoaDAO

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.