示例#1
0
 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;
 }
示例#2
0
 public CommentController(CommentService commentService, ClientManager clientManager, UserVoteService userVoteService)
 {
     this.CommentService  = commentService;
     this.ClientManager   = clientManager;
     this.UserVoteService = userVoteService;
 }