private List <string> GetAllPropertyNameOfSpecialtyViewModel()
        {
            var specialtyViewModel = new SpecialtyViewModel();

            var type = specialtyViewModel.GetType();

            return(ReflectionUtilities.GetAllPropertyNamesOfType(type));
        }