public TopicController(CategoryService categoryService, TopicService topicService, CommentService commentService, ClientManager clientManager, UserVoteService userVoteService, UserCollectService userCollectService) { this.CategoryService = categoryService; this.TopicService = topicService; this.ClientManager = clientManager; this.CommentService = commentService; this.UserVoteService = userVoteService; this.UserCollectService = userCollectService; }
public CommentController(CommentService commentService, ClientManager clientManager, UserVoteService userVoteService) { this.CommentService = commentService; this.ClientManager = clientManager; this.UserVoteService = userVoteService; }