public ActionResult Create(Patient patient) { if (ModelState.IsValid) { patient.DateOfRegistration= DateTime.Now; db.Patients.Add(patient); db.SaveChanges(); return RedirectToAction("Index"); } return View(patient); }
public ActionResult Edit(Patient patient) { if (ModelState.IsValid) { db.Entry(patient).State = EntityState.Modified; db.SaveChanges(); return RedirectToAction("Index"); } return View(patient); }
public Visitation(DateTime date, Patient patient) { this.Date = date; this.Patient = patient; }