Subversion Repositories Integrator Subversion

Rev

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

package br.com.ec.repository;

import java.util.List;

import br.com.ec.core.generic.GenericRepository;
import br.com.ec.domain.dto.LancamentoDTO;
import br.com.ec.domain.model.Lancamento;

public interface LancamentoRepository extends GenericRepository<Lancamento> {

        List<LancamentoDTO> consultarLancamentosDaVenda(Long sequencialVenda);
       
        /*
        Double obterValorTotalVendidoDosProdutosDaPromocaoInterna(ParametrosConsultaVendasDTO parametros);

        Integer obterQuantidadeVendasDosProdutosDaPromocaoInterna(ParametrosConsultaVendasDTO parametros);
       
        List<Lancamento> consultarLancamentosComDescontos(Date periodoInicial, Date periodoFinal);

        Integer obterQuantidadeVendasComCupom(Cupom cupom);
         */

       
}