Subversion Repositories Integrator Subversion

Rev

Blame | Last modification | View Log | Download | RSS feed

package br.com.ec.domain.service.cliente;

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

public interface ClienteService extends GenericService<Cliente> {

        Cliente detalharCliente(Cliente cliente);
       
        Cliente consultarClientePorCpfCnpj(String cpfCnpj);
       
        Cliente consultarClientePorCpfCnpjOuContato(String cpfCnpj, String contatoCliente);
       
}