private void PopulateIdentificationType(object selectedIdentificationType = null) { var query = ems.GetIdentificationTypeList(); SelectList IdentificationType = new SelectList(query, "IdentificationTypeId", "IdentificationTypeName", selectedIdentificationType); ViewBag.IdentificationTypeId = IdentificationType; }