Rev 628 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 628 | Rev 630 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | package br.com.ec.domain.service; |
1 | package br.com.ec.domain.service; |
| 2 | - | ||
| 3 | import java.util.List; |
- | |
| 4 | 2 | ||
| 5 | import br.com.ec.core.generic.GenericService; |
3 | import br.com.ec.core.generic.GenericService; |
| - | 4 | import br.com.ec.domain.dto.ComercialPosVendaDTO; |
|
| 6 | import br.com.ec.domain.dto.PosVendaDTO; |
5 | import br.com.ec.domain.dto.PosVendaDTO; |
| 7 | import br.com.ec.domain.model.PosVenda; |
6 | import br.com.ec.domain.model.PosVenda; |
| 8 | 7 | ||
| 9 | public interface PosVendaService extends GenericService<PosVenda> { |
8 | public interface PosVendaService extends GenericService<PosVenda> { |
| 10 | 9 | ||
| 11 | List<PosVendaDTO> consultarNaoFinalizadas(); |
- | |
| - | 10 | ComercialPosVendaDTO consultarPosVendaEmAndamento(); |
|
| - | 11 | ||
| - | 12 | void iniciarAtendimento(PosVendaDTO posVenda); |
|
| 12 | 13 | ||
| 13 | }
|
14 | }
|