コード例 #1
0
        public ListOfValueDropDownModel LoadDropDownData()
        {
            ListOfValueDropDownModel model = new ListOfValueDropDownModel();

            using (var db = new MainDbContext())
            {
                List <SelectListItem> listExistGroupType = _clsGlobal.GetAllGroupType();
                model.lstGroupType = listExistGroupType;
            }
            return(model);
        }