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