Rev 265 |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
package br.com.ec.repository;
import java.util.List;
import br.com.ec.core.generic.GenericRepository;
import br.com.ec.domain.dto.PessoaDTO;
import br.com.ec.domain.model.Pessoa;
public interface PessoaRepository
extends GenericRepository
<Pessoa
> {
List<PessoaDTO
> consultarPessoasJuridicas
(String cnpj
);
Pessoa consultarPessoaPorCpfOuCpnj
(String cpfCnpj
);
Pessoa detalharPessoa
(Long sequencialPessoa
);
/*
Pessoa detalharPessoa(Pessoa pessoa);
List<Pessoa> consultarPessoasJuridicas();
*/
}