Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 106 | espaco | 1 | package br.com.ec.infrastructure.repository; |
| 2 | |||
| 3 | import java.util.Date; |
||
| 4 | import java.util.List; |
||
| 5 | |||
| 6 | import br.com.ec.domain.model.Conta; |
||
| 7 | import br.com.ec.domain.model.Venda; |
||
| 8 | import br.com.ec.domain.model.VendaFormaPagamento; |
||
| 9 | import br.edu.cesmac.core.generic.GenericRepository; |
||
| 10 | |||
| 11 | public interface ContaRepository extends GenericRepository<Conta> { |
||
| 12 | |||
| 13 | Conta consultarContaAReceber(VendaFormaPagamento vendaFormaPagamento); |
||
| 14 | |||
| 15 | List<Conta> consultarContasAReceber(Venda venda); |
||
| 16 | |||
| 17 | List<Conta> consultarContasAReceberPorPeriodo(Date dataInicial, Date dataFinal); |
||
| 18 | |||
| 19 | } |