Пример #1
0
        private void PopulateIdentificationType(object selectedIdentificationType = null)
        {
            var        query = ems.GetIdentificationTypeList();
            SelectList IdentificationType = new SelectList(query, "IdentificationTypeId", "IdentificationTypeName", selectedIdentificationType);

            ViewBag.IdentificationTypeId = IdentificationType;
        }