public IEnumerable <Product> GetByCategoryName(string name)
 {
     return(_productStore.ListByCategory(name));
 }