public void UpdateInv(PartsInventory partsInv) { context.PartsInventory.Update(partsInv); context.SaveChanges(); }
public void DeleteInv(PartsInventory partsInv) { context.PartsInventory.Remove(partsInv); context.SaveChanges(); }
public void AddInv(PartsInventory partsInv) { context.PartsInventory.Add(partsInv); context.SaveChanges(); }