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