public async Task <Customer> Update(Customer customer) { _context.Update(customer); await _context.SaveChangesAsync(); return(customer); }
public async Task <SalesPersons> Update(SalesPersons sales) { _context.Update(sales); await _context.SaveChangesAsync(); return(sales); }
public async Task <Products> Update(Products product) { _context.Update(product); await _context.SaveChangesAsync(); return(product); }