public void UpdatePriceComponent(ProductPriceComponents priceComponent)
 {
     ctx.Update(priceComponent);
     ctx.SaveChanges();
 }
예제 #2
0
 public void UpdateProduct(Product product)
 {
     ctx.Update(product);
     ctx.SaveChanges();
 }
예제 #3
0
 public void UpdateInventoryItem(InventoryItem item)
 {
     ctx.Update(item);
     ctx.SaveChanges();
 }