public async Task <IActionResult> Edit(int id, [Bind("Id,Name,Rank,Group,GroupSize")] Counsellors counsellors) { if (id != counsellors.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(counsellors); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CounsellorsExists(counsellors.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(counsellors)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,FirstName,LastName,Group")] Pathfinders pathfinders) { if (id != pathfinders.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(pathfinders); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PathfindersExists(pathfinders.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(pathfinders)); }