Inheritance: ServiceBase
コード例 #1
0
 public TopicController(CategoryService categoryService, TopicService topicService, CommentService commentService, TopicCollectService topicCollectService)
 {
     this.CategoryService = categoryService;
     this.TopicService = topicService;
     this.CommentService = commentService;
     this.TopicCollectService = topicCollectService;
 }
コード例 #2
0
 public CommentController(CommentService commentService)
 {
     this.CommentService = commentService;
 }