public Product PutProduct(long id, Product product) { _context.Entry(product).State = EntityState.Modified; _context.SaveChanges(); return(product); }
public Staff updateItems(Staff staff) { _context.Entry(staff).State = EntityState.Modified; _context.SaveChanges(); return(staff); }