public void Update(Product item) { db.Entry(item).State = EntityState.Modified; }
public void Create(Product item) { db.Products.Add(item); }