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