public IList <Product> FindProductByName(string name)
 {
     return(productDao.FindByName(name));
 }