Ejemplo n.º 1
0
 public async Task <bool> Update(Product product)
 {
     _productContext.Update(product);
     return(await Save());
 }
 public async Task <bool> Update(Country country)
 {
     _productContext.Update(country);
     return(await Save());
 }
 public async Task <bool> Update(Category category)
 {
     _productContext.Update(category);
     return(await Save());
 }