Exemplo n.º 1
0
 public List<Product> getProductList(
     ProductCategory productCategory, int firstResult, int maxResults) {
   return productDao.getProductList(productCategory, firstResult, maxResults);
 }
Exemplo n.º 2
0
 public List<Product> getProductList(ProductCategory productCategory) {
   return productDao.getProductList(productCategory);
 }
Exemplo n.º 3
0
 public List<Product> getProductList(int firstResult, int maxResults) {
   return productDao.getProductList(firstResult, maxResults);
 }
Exemplo n.º 4
0
 public List<Product> getProductList(
     Date beginDate, Date endDate, int firstResult, int maxResults) {
   return productDao.getProductList(beginDate, endDate, firstResult, maxResults);
 }