public ActionResult LastPost(int forumPostId, bool showTopic)
        {
            var forumPost = _forumService.GetPostById(forumPostId);
            var model     = _forumModelFactory.PrepareLastPostModel(forumPost, showTopic);

            return(PartialView(model));
        }
Exemple #2
0
        public IViewComponentResult Invoke(int forumPostId, bool showTopic)
        {
            var forumPost = _forumService.GetPostById(forumPostId);
            var model     = _forumModelFactory.PrepareLastPostModel(forumPost, showTopic);

            return(View(model));
        }