public async Task <IActionResult> PutUser(int id, User user) { if (id != user.idUser) { return(BadRequest()); } _context.Entry(user).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!UserExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutCandidate(int id, Candidate candidate) { if (id != candidate.idCandidate) { return(BadRequest()); } _context.Entry(candidate).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CandidateExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }