@Override
 public Product saveOrUpdate(String name) {
   Product product = new Product(name);
   return productDao.saveOrUpdate(product);
 }