Inheritance: ServiceBase
示例#1
0
 public MyController(UserService userService, MessageService messageService)
 {
     this.UserService = userService;
     this.MessageService = messageService;
 }
示例#2
0
 public UserController(UserService userService, TopicService topicService, TopicCollectService topicCollectService)
 {
     this.UserService = userService;
     this.TopicService = topicService;
     this.TopicCollectService = topicCollectService;
 }