public async Task <IActionResult> PutLogin(string id, Login login) { if (id != login.Email) { return(BadRequest()); } _context.Entry(login).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!LoginExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutIntervention(int id, Intervention intervention) { if (id != intervention.Id) { return(BadRequest()); } _context.Entry(intervention).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!InterventionExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }