Ejemplo n.º 1
0
        public ActionResult CreatePatientProfile()
        {
            var patientModel = new PatientDetailsViewModel
            {
                GenderDictionary = _patientServices.GetGenderDictionary()
            };


            return(View(patientModel));
        }
Ejemplo n.º 2
0
 public Dictionary <string, string> GetAllGender()
 {
     return(_patientServices.GetGenderDictionary());
 }