Subversion Repositories Integrator Subversion

Rev

Rev 265 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
265 espaco 1
package br.com.ec.repository;
2
 
3
import java.util.List;
4
 
5
import br.com.ec.core.generic.GenericRepository;
6
import br.com.ec.domain.dto.PessoaDTO;
7
import br.com.ec.domain.model.Pessoa;
8
 
9
public interface PessoaRepository extends GenericRepository<Pessoa> {
10
 
11
        List<PessoaDTO> consultarPessoasJuridicas(String cnpj);
299 espaco 12
 
13
        Pessoa consultarPessoaPorCpfOuCpnj(String cpfCnpj);
14
 
15
        Pessoa detalharPessoa(Long sequencialPessoa);
265 espaco 16
 
17
        /*
18
        Pessoa detalharPessoa(Pessoa pessoa);
19
 
20
        List<Pessoa> consultarPessoasJuridicas();
21
        */
22
 
23
}