コード例 #1
0
        public async Task<ActionResult> Index()
        {
            var tableData = await mediator.SendAsync(new GetExportNotificationOwnerDisplays());

            var model = new ExportNotificationsViewModel { TableData = tableData };

            return View(model);
        }
コード例 #2
0
        public async Task <ActionResult> Index()
        {
            var tableData = await mediator.SendAsync(new GetExportNotificationOwnerDisplays());

            var model = new ExportNotificationsViewModel {
                TableData = tableData
            };

            return(View(model));
        }