public ForumCategoriesController(
     IForumCategoriesService forumCategoriesService,
     IForumPostsService forumPostsService)
 {
     this.forumCategoriesService = forumCategoriesService;
     this.forumPostsService      = forumPostsService;
 }
 public ForumCategoriesController(
     IForumCategoriesService forumCategoriesService,
     IPostsService postsService,
     ICategoriesService categoriesService)
 {
     this.forumCategoriesService = forumCategoriesService;
     this.postsService           = postsService;
     this.categoriesService      = categoriesService;
 }
 public ForumPostsController(
     IForumCategoriesService forumCategoriesService,
     IForumPostsService forumPostsService,
     UserManager <ApplicationUser> userManager)
 {
     this.forumCategoriesService = forumCategoriesService;
     this.forumPostsService      = forumPostsService;
     this.userManager            = userManager;
 }
 public ForumCategoriesController(IForumCategoriesService service)
 {
     _service = service;
 }
 public ForumHomeController(IForumCategoriesService forumCategories)
 {
     this.forumCategories = forumCategories;
 }