Subversion Repositories Integrator Subversion

Rev

Rev 106 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
106 espaco 1
package br.com.ec.domain.service.pagamento;
2
 
3
import java.util.Date;
4
import java.util.List;
5
 
195 espaco 6
import br.com.ec.core.generic.GenericService;
106 espaco 7
import br.com.ec.domain.model.Loja;
8
import br.com.ec.domain.model.Pagamento;
9
 
10
public interface PagamentoService extends GenericService<Pagamento> {
11
 
12
        Integer quantidadePagamentosEmAberto(Loja loja);
13
 
14
        List<Pagamento> consultarPagamentosDoDia(Long sequencialLoja, Date dataVendas);
15
 
16
}