Beispiel #1
0
        private SelectList GetEducationCategoryByEducationId(int userID)
        {
            List <Master_EducationCategory> list = _IEducationService.GetEducationcategoryListByUserId(userID);

            SelectList selList = new SelectList(list, "EducationCategoryID", "EducationCategory");

            return(selList);
        }