Subversion Repositories Integrator Subversion

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

package br.com.ec.infrastructure.repository;

import br.com.ec.domain.model.Cliente;
import br.edu.cesmac.core.generic.GenericRepository;

public interface ClienteRepository extends GenericRepository<Cliente> {

        Cliente detalharCliente(Cliente cliente);

        Cliente consultarClientePorCpfCnpj(String cpfCnpj, Long sequencial);

        Boolean verificarSeClientePossuiVendas(Cliente cliente);

        Cliente consultarClientePorCpfCnpjOuContato(String cpfCnpj, String contatoCliente);
       
}