public async Task <Customer> Update(Customer customer) { _ctx.Update(customer); await _ctx.SaveChangesAsync(); return(customer); }
public async Task <Product> Update(Product product) { _ctx.Update(product); await _ctx.SaveChangesAsync(); return(product); }
public async Task <SalesPerson> Update(SalesPerson salesPerson) { _ctx.Update(salesPerson); await _ctx.SaveChangesAsync(); return(salesPerson); }