public List<ProductItem> getProductItems(ProductType type) {
   return productItemDao.getProductItems(type);
 }
 public List<ProductItem> getProductItems() {
   return productItemDao.getProductItems(false);
 }