コード例 #1
0
        public IActionResult List()
        {
            SectionListViewModel model = new SectionListViewModel
            {
                Sections = _sectionService.GetAllRouteSections(),
                Halls    = _sectionService.GetAllRouteHalls()
            };

            return(View(model));
        }