コード例 #1
0
ファイル: MappingController.cs プロジェクト: lanicon/Core
        public async Task <IActionResult> POIs()
        {
            var modal = new POIsView();

            modal.Types = await _mappingService.GetPOITypesForDepartmentAsync(DepartmentId);

            return(View(modal));
        }
コード例 #2
0
        public IActionResult POIs()
        {
            var modal = new POIsView();

            modal.Types = _mappingService.GetPOITypesForDepartment(DepartmentId);

            return(View(modal));
        }