Blame |
Last modification |
View Log
| Download
| RSS feed
package br.com.ec.repository;
import br.com.ec.core.generic.GenericRepository;
import br.com.ec.domain.model.VendaFormaPagamento;
public interface VendaFormaPagamentoRepository extends GenericRepository<VendaFormaPagamento> {
/*
List<VendaFormaPagamento> consultarLancamentosCartoesNoPeriodo(Date dataInicial, Date dataFinal, Loja loja, List<Maquineta> maquinetasSelecionadas);
List<VendaFormaPagamento> consultarLancamentosDaVenda(Venda venda);
VendaFormaPagamento consultarLancamentoPorVendaEFormaPagamento(VendaFormaPagamento vendaFormaPagamento);
Integer obterQuantidadePagamentosComCupom(Cupom cupom);
*/
}