Rev 296 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 296 | Rev 297 | ||
|---|---|---|---|
| Line 4... | Line 4... | ||
| 4 | 4 | ||
| 5 | import br.com.ec.core.generic.GenericService; |
5 | import br.com.ec.core.generic.GenericService; |
| 6 | import br.com.ec.domain.dto.DreDTO; |
6 | import br.com.ec.domain.dto.DreDTO; |
| 7 | import br.com.ec.domain.dto.IndicadorDreDTO; |
7 | import br.com.ec.domain.dto.IndicadorDreDTO; |
| 8 | import br.com.ec.domain.dto.LojaDTO; |
8 | import br.com.ec.domain.dto.LojaDTO; |
| - | 9 | import br.com.ec.domain.dto.ParcelaDTO; |
|
| 9 | import br.com.ec.domain.dto.VigenciaDTO; |
10 | import br.com.ec.domain.dto.VigenciaDTO; |
| 10 | import br.com.ec.domain.model.IndicadorDre; |
11 | import br.com.ec.domain.model.IndicadorDre; |
| 11 | 12 | ||
| 12 | public interface IndicadorDreService extends GenericService<IndicadorDre> { |
13 | public interface IndicadorDreService extends GenericService<IndicadorDre> { |
| 13 | 14 | ||
| 14 | DreDTO preencherDre(List<VigenciaDTO> vigenciasSelecionadas, LojaDTO centroDeCustos); |
15 | DreDTO preencherDre(List<VigenciaDTO> vigenciasSelecionadas, LojaDTO centroDeCustos); |
| 15 | 16 | ||
| 16 | List<IndicadorDreDTO> consultarIndicadores(); |
17 | List<IndicadorDreDTO> consultarIndicadores(); |
| - | 18 | ||
| - | 19 | List<ParcelaDTO> detalharIndicador(IndicadorDreDTO indicadorDre, VigenciaDTO vigencia, LojaDTO centroDeCustos); |
|
| 17 | 20 | ||
| 18 | }
|
21 | }
|