public async Task <IActionResult> Edit(int id, [Bind("ID,FirstName,MiddleName,LastName")] Doctor doctor) { if (id != doctor.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(doctor); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!DoctorExists(doctor.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(doctor)); }
public async Task <IActionResult> Edit(int id, [Bind("ID,OHIP,FirstName,MiddleName,LastName,DOB,ExpYrVisits,Phone,eMail,DoctorID")] Patient patient) { if (id != patient.ID) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(patient); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!PatientExists(patient.ID)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } ViewData["DoctorID"] = new SelectList(_context.Doctors, "ID", "FullName", patient.DoctorID); return(View(patient)); }