public void UpdatePriceComponent(ProductPriceComponents priceComponent)
 {
     ctx.Update(priceComponent);
     ctx.SaveChanges();
 }
Ejemplo n.º 2
0
 public void UpdateProduct(Product product)
 {
     ctx.Update(product);
     ctx.SaveChanges();
 }
Ejemplo n.º 3
0
 public void UpdateInventoryItem(InventoryItem item)
 {
     ctx.Update(item);
     ctx.SaveChanges();
 }