// GET: Blog public async Task <ActionResult> Index() { ViewBag.Title = "Strefa Dzika"; var postsList = await _blogService.GetAllPosts(); var commentsList = await _blogService.GetAllComments(); var compoundView = new CompoundBlogView(); compoundView.Posts = postsList; compoundView.Comments = commentsList; return(View(compoundView)); }