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