public async Task <IActionResult> Edit(int id, [Bind("Id,Omschrijving")] ProductieEenheid productieEenheid) { if (id != productieEenheid.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(productieEenheid); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ProductieEenheidExists(productieEenheid.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(productieEenheid)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,BoekingId,Omschrijving,FunctieId,Email,Gsm,WalkieTalkie")] Begeleiding begeleiding) { if (id != begeleiding.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(begeleiding); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!BegeleidingExists(begeleiding.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["BoekingId"] = new SelectList(_context.Boekingen, "Id", "Id", begeleiding.BoekingId); ViewData["FunctieId"] = new SelectList(_context.Functies, "Id", "Id", begeleiding.FunctieId); return(View(begeleiding)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Omschrijving,KleurCodeId")] Band band) { if (id != band.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(band); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!BandExists(band.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["KleurCodeId"] = new SelectList(_context.KleurCodes, "Id", "Omschrijving", band.KleurCodeId); return(View(band)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Omschrijving,Code")] KleurCode kleurCode) { if (id != kleurCode.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(kleurCode); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!KleurCodeExists(kleurCode.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(kleurCode)); }