public void UpdatePriceComponent(ProductPriceComponents priceComponent) { ctx.Update(priceComponent); ctx.SaveChanges(); }
public void UpdateProduct(Product product) { ctx.Update(product); ctx.SaveChanges(); }
public void UpdateInventoryItem(InventoryItem item) { ctx.Update(item); ctx.SaveChanges(); }