コード例 #1
0
 public ProfileController(IUserServices userServices, ITweetServices tweetServices, IFollowServices followServices)
 {
     _userServices   = userServices;
     _tweetServices  = tweetServices;
     _followServices = followServices;
 }
コード例 #2
0
 public MessageController(IFollowServices followServices, IMessageServices messageServices)
 {
     _followServices  = followServices;
     _messageServices = messageServices;
 }