Subversion Repositories Integrator Subversion

Rev

Go to most recent revision | Details | 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
 
6
import br.com.ec.domain.model.Loja;
7
import br.com.ec.domain.model.Pagamento;
8
import br.edu.cesmac.core.generic.GenericService;
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
}