public ActionResult GetPatientDetail(string PatientId)
        {
            var model = _patientService.CreateViewModel(PatientId);

            return(PartialView("_PatientForm", model));
        }