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