Blame |
Last modification |
View Log
| Download
| RSS feed
package br.com.ec.domain.service;
import java.util.List;
import br.com.ec.core.generic.GenericService;
import br.com.ec.domain.dto.LancamentoDTO;
import br.com.ec.domain.model.Lancamento;
public interface LancamentoService
extends GenericService
<Lancamento
> {
List<LancamentoDTO
> consultarLancamentosDaVenda
(Long sequencialVenda
);
// Double obterValorTotalVendidoDosProdutosDaPromocaoInterna(ParametrosConsultaVendasDTO parametrosConsultaVendas);
// Integer obterQuantidadeVendasDosProdutosDaPromocaoInterna(ParametrosConsultaVendasDTO parametrosConsultaVendas);
// List<Lancamento> consultarLancamentosComDescontos(Date periodoInicial, Date periodoFinal);
// Integer obterQuantidadeVendasComCupom(Cupom cupom);
}