Example #1
0
        public async Task <IActionResult> Index()
        {
            var categories = await _categoryApiService.GetAllAsyncFromApi();

            return(View(_mapper.Map <IEnumerable <CategoryDto> >(categories)));
        }