public async Task <IActionResult> PutVriendschap(long id, Vriendschap vriendschap) { if (id != vriendschap.vriendschapID) { return(BadRequest()); } _context.Entry(vriendschap).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VriendschapExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutGebruiker(long id, Gebruiker gebruiker) { if (id != gebruiker.gebruikerID) { return(BadRequest()); } _context.Entry(gebruiker).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!GebruikerExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutPoll(long id, Poll poll) { if (id != poll.pollID) { return(BadRequest()); } _context.Entry(poll).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PollExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutAntwoord(long id, Antwoord antwoord) { if (id != antwoord.antwoordID) { return(BadRequest()); } _context.Entry(antwoord).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!AntwoordExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutStem(long id, Stem stem) { if (id != stem.stemID) { return(BadRequest()); } _context.Entry(stem).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!StemExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public async Task <IActionResult> PutMelding(long id, Melding melding) { if (id != melding.meldingID) { return(BadRequest()); } _context.Entry(melding).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!MeldingExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }