Rev 182 |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
package br.com.ec.domain.service.pagamento;
import java.util.Date;
import java.util.List;
import br.com.ec.domain.model.Loja;
import br.com.ec.domain.model.Pagamento;
import br.edu.cesmac.core.generic.GenericService;
public interface PagamentoService
extends GenericService
<Pagamento
> {
Integer quantidadePagamentosEmAberto
(Loja loja
);
List<Pagamento
> consultarPagamentosDoDia
(Long sequencialLoja,
Date dataVendas
);
}