Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 623 | blopes | 1 | package br.com.ec.repository; |
| 2 | |||
| 3 | import java.util.List; |
||
| 4 | |||
| 5 | import br.com.ec.core.generic.GenericRepository; |
||
| 6 | import br.com.ec.domain.dto.PosVendaDTO; |
||
| 7 | import br.com.ec.domain.model.PosVenda; |
||
| 8 | |||
| 9 | public interface PosVendaRepository extends GenericRepository<PosVenda> { |
||
| 10 | |||
| 11 | List<PosVendaDTO> consultarNaoFinalizadas(); |
||
| 12 | |||
| 13 | /* |
||
| 14 | PosVenda detalharPosVenda(PosVenda posVenda); |
||
| 15 | |||
| 16 | Integer obterQuantidadeDePosVendaAbertas(PosVenda posVenda); |
||
| 17 | */ |
||
| 18 | |||
| 19 | } |