Beispiel #1
0
        public async Task <ActionResult> Details(ThemeViewModel themeViewModel)
        {
            if (await themeService.ExistsThemeById(themeViewModel.Id) == false)
            {
                return(NotFound());
            }

            var model = await resultService.Process(themeViewModel);

            return(View(model));
        }