Пример #1
0
        public IActionResult CaseReportFormModal()
        {
            var gropupedCategoriesList = _caseReportFormListResolver
                                         .PopulateCRFGroupedCategoriesDropdownList();

            ViewBag.CaseReportForms = gropupedCategoriesList;
            ViewBag.Index           = (string)Request.Query["index"];
            return(PartialView());
        }
Пример #2
0
 public IActionResult New()
 {
     _listResolver.PopulateDiagnosisCategoriesDropDownList();
     _listResolver.PopulateDiagnosisTypeDropDownList();
     _listResolver.PopulatePatientStatusesDropdownList();
     ViewBag.SmokingStatusId = _listResolver.PopulateSmokingStatusesDropdownList();
     ViewBag.CaseReportForms = _caseReportFormListResolver
                               .PopulateCRFGroupedCategoriesDropdownList();
     return(PartialView());
 }