Пример #1
0
 public ActionResult ForumTopicPost(int topicCategoryId)
 {
     if (topicCategoryId > 0)
     {
         List <ForumPost> forumPosts = aHomeManager.GetFormTopicPost(topicCategoryId);
         ViewBag.GetFormTopicPost = forumPosts;
     }
     ViewBag.GetName = GetUserData().Name;
     return(View());
 }