Subversion Repositories Integrator Subversion

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
106 espaco 1
package br.com.ec.infrastructure.repository;
2
 
3
import br.com.ec.domain.model.Cliente;
4
import br.edu.cesmac.core.generic.GenericRepository;
5
 
6
public interface ClienteRepository extends GenericRepository<Cliente> {
7
 
8
        Cliente detalharCliente(Cliente cliente);
9
 
10
        Cliente consultarClientePorCpfCnpj(String cpfCnpj, Long sequencial);
11
 
12
        Boolean verificarSeClientePossuiVendas(Cliente cliente);
13
 
14
        Cliente consultarClientePorCpfCnpjOuContato(String cpfCnpj, String contatoCliente);
15
 
16
}