Package br.com.granja.dominio

Examples of br.com.granja.dominio.PerfilPessoa


    }
   
    public List<Pessoa> findAllFornecedores(){
      Pessoa p = new Pessoa();
      p.setAtivo(true);
      p.setPerfil(new PerfilPessoa(PerfilPessoa.FORNECEDOR));
      return dao.getListPessoa(p);
    }
View Full Code Here


      return dao.getListPessoa(p);
    }
  public List<Pessoa> findAllClientes(){
      Pessoa p = new Pessoa();
      p.setAtivo(true);
      p.setPerfil(new PerfilPessoa(PerfilPessoa.CLIENTE));
      return dao.getListPessoa(p);
    }
View Full Code Here

      return dao.getListPessoa(p);
    }
  public List<Pessoa> findAllFuncionarios(){
      Pessoa p = new Pessoa();
      p.setAtivo(true);
      p.setPerfil(new PerfilPessoa(PerfilPessoa.FUNCIONARIO));
      return dao.getListPessoa(p);
    }
View Full Code Here

TOP

Related Classes of br.com.granja.dominio.PerfilPessoa

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.