public List<Product> getNewProductList(ProductCategory productCategory, int maxResults) {
   return productDao.getNewProductList(productCategory, maxResults);
 }
 public List<Product> getNewProductList(int maxResults) {
   return productDao.getNewProductList(maxResults);
 }