Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 106 | espaco | 1 | package br.com.ec.domain.service.cliente; |
| 2 | |||
| 3 | import org.primefaces.model.StreamedContent; |
||
| 4 | |||
| 5 | import br.com.ec.domain.model.Cliente; |
||
| 6 | import br.edu.cesmac.core.consulta.ParametrosConsulta; |
||
| 7 | import br.edu.cesmac.core.generic.GenericService; |
||
| 8 | |||
| 9 | public interface ClienteService extends GenericService<Cliente> { |
||
| 10 | |||
| 11 | Cliente detalharCliente(Cliente cliente); |
||
| 12 | |||
| 13 | Cliente consultarClientePorCpfCnpj(String cpfCnpj); |
||
| 14 | |||
| 15 | Cliente consultarClientePorCpfCnpjOuContato(String cpfCnpj, String contatoCliente); |
||
| 16 | |||
| 17 | StreamedContent gerarArquivoExcel(ParametrosConsulta<Cliente> parametrosConsulta); |
||
| 18 | |||
| 19 | } |