Rev 462 | Rev 537 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 462 | Rev 468 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | package br.com.ec.domain.service; |
1 | package br.com.ec.domain.service; |
| - | 2 | ||
| - | 3 | import java.util.List; |
|
| 2 | 4 | ||
| 3 | import br.com.ec.core.generic.GenericService; |
5 | import br.com.ec.core.generic.GenericService; |
| - | 6 | import br.com.ec.domain.dto.CompraProdutoDTO; |
|
| 4 | import br.com.ec.domain.dto.ProdutoDTO; |
7 | import br.com.ec.domain.dto.ProdutoDTO; |
| 5 | import br.com.ec.domain.model.Produto; |
8 | import br.com.ec.domain.model.Produto; |
| 6 | 9 | ||
| 7 | public interface ProdutoService extends GenericService<Produto> { |
10 | public interface ProdutoService extends GenericService<Produto> { |
| 8 | 11 | ||
| Line 21... | Line 24... | ||
| 21 | // Produto consultarProdutoPorCodigoEAN(String codigoEAN);
|
24 | // Produto consultarProdutoPorCodigoEAN(String codigoEAN);
|
| 22 | 25 | ||
| 23 | // Produto consultarProdutoPorCodigoOuCodigoEAN(String codigoProduto);
|
26 | // Produto consultarProdutoPorCodigoOuCodigoEAN(String codigoProduto);
|
| 24 | 27 | ||
| 25 | ProdutoDTO consultarProdutoDTOPorCodigoOuCodigoEAN(String codigoProduto); |
28 | ProdutoDTO consultarProdutoDTOPorCodigoOuCodigoEAN(String codigoProduto); |
| - | 29 | ||
| - | 30 | List<CompraProdutoDTO> consultarComprasDoProduto(Long sequencial); |
|
| 26 | 31 | ||
| 27 | /*
|
32 | /*
|
| 28 |
|
33 |
|
| 29 | Produto consultarProdutoPorCodigoRapido(String codigoProdutoRapido);
|
34 | Produto consultarProdutoPorCodigoRapido(String codigoProdutoRapido);
|
| 30 | 35 | ||