public async Task <IActionResult> PutCursusBeschrijving(int id, CursusBeschrijving cursusBeschrijving) { if (id != cursusBeschrijving.CursusBeschrijvingID) { return(BadRequest()); } _context.Entry(cursusBeschrijving).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CursusBeschrijvingExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutDocent(int id, Docent docent) { if (id != docent.DocentID) { return(BadRequest()); } _context.Entry(docent).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DocentExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }