public ActionResult GetCreatePatientConsultationView()
        {
            PatientConsultationViewModel model = new PatientConsultationViewModel()
            {
                PatientId = PatientId, ConsultationStatus = "NEW"
            };

            ViewBag.Doctors = _IListHandler.GetDoctors();

            return(PartialView("PatientConsultationEditor", model));
        }
        public ActionResult PatientConsultation()
        {
            ViewBag.Doctors = _IListHandler.GetDoctors();

            return(View());
        }