public CommentsApiController(IUserService service, ICommentService service2, IQuickQuestionService service3, IFollowForumService service4, IForumEmailService service5)
 {
     this._userService = service;
     this._commentService = service2;
     this._quickQuestionService = service3;
     this._followForumService = service4;
     this._forumEmailService = service5;
     this._superAdmin = WebConfigurationManager.AppSettings["superAdmin"];
     this._admin = WebConfigurationManager.AppSettings["admin"];
 }
 public FollowForumThreadApiController(IUserService service, IFollowForumService service2)
 {
     this._userService = service;
     this._followForumService = service2;
 }