public async Task <IActionResult> PutEmployees(long id, Employees employees) { if (id != employees.EmployeeId) { return(BadRequest()); } _context.Entry(employees).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!EmployeesExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutCustomers(long id, Customers customers) { if (id != customers.CustomerId) { return(BadRequest()); } _context.Entry(customers).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CustomersExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutTracks(long id, Tracks tracks) { if (id != tracks.TrackId) { return(BadRequest()); } _context.Entry(tracks).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TracksExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }