Rev 721 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 721 | Rev 742 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | package br.com.ec.domain.service; |
1 | package br.com.ec.domain.service; |
| - | 2 | ||
| - | 3 | import java.util.List; |
|
| 2 | 4 | ||
| 3 | import org.primefaces.model.StreamedContent; |
5 | import org.primefaces.model.StreamedContent; |
| 4 | 6 | ||
| 5 | import br.com.ec.core.generic.GenericService; |
7 | import br.com.ec.core.generic.GenericService; |
| 6 | import br.com.ec.domain.dto.AvaliacaoDTO; |
8 | import br.com.ec.domain.dto.AvaliacaoDTO; |
| Line 10... | Line 12... | ||
| 10 | 12 | ||
| 11 | public interface FolhaPagamentoService extends GenericService<Avaliacao> { |
13 | public interface FolhaPagamentoService extends GenericService<Avaliacao> { |
| 12 | 14 | ||
| 13 | FolhaPagamentoDTO detalharFolhaPagamento(AvaliacaoDTO avaliacaoDTO); |
15 | FolhaPagamentoDTO detalharFolhaPagamento(AvaliacaoDTO avaliacaoDTO); |
| 14 | 16 | ||
| 15 | FolhaPagamentoDTO importarFolhaPagamento(byte[] arquivo, FolhaPagamentoDTO folhaPagamentoDTO); |
- | |
| - | 17 | List<byte[]> uploadArquivo(byte[] arquivo); |
|
| - | 18 | ||
| - | 19 | FolhaPagamentoDTO importarFolhaPagamento(List<byte[]> arquivos, FolhaPagamentoDTO folhaPagamentoDTO); |
|
| 16 | 20 | ||
| 17 | void atualizarValorParcela(ParcelaDTO parcelaDTO); |
21 | void atualizarValorParcela(ParcelaDTO parcelaDTO); |
| 18 | 22 | ||
| 19 | void atualizarCentroDeCustos(Long sequencialConta, Long sequencialCentroDeCustos); |
23 | void atualizarCentroDeCustos(Long sequencialConta, Long sequencialCentroDeCustos); |
| 20 | 24 | ||
| 21 | StreamedContent downloadRecibos(FolhaPagamentoDTO folhaPagamentoDTO); |
25 | StreamedContent downloadRecibos(FolhaPagamentoDTO folhaPagamentoDTO); |
| 22 | 26 | ||
| 23 | void enviarRecibosPorEmail(FolhaPagamentoDTO folhaPagamentoDTO, String tituloEmail); |
27 | void enviarRecibosPorEmail(FolhaPagamentoDTO folhaPagamentoDTO, String tituloEmail); |
| 24 | 28 | ||
| 25 | StreamedContent downloadArquivoFolhaBanco(FolhaPagamentoDTO folhaPagamentoDTO, String codigoBanco); |
29 | StreamedContent downloadArquivoFolhaBanco(FolhaPagamentoDTO folhaPagamentoDTO, String codigoBanco); |
| - | 30 | ||
| 26 | 31 | ||
| 27 | }
|
32 | }
|