Esempio n. 1
0
        public virtual async Task <ActionResult> Footer()
        {
            var links = new FooterViewModel
            {
                PageLinks         = await _pageService.GetPageLinks(),
                PostCategoryLinks = await _postCategoryService.GetCategoryLinks()
            };

            return(PartialView(MVC.Home.Views._Footer, links));
        }