コード例 #1
0
ファイル: ReplyController.cs プロジェクト: SebigDev/SkinHub
 public ReplyController(IReplyServices replyServices)
 {
     _replyServices = replyServices;
 }
コード例 #2
0
 public MessageController(IMessageServices messageServices, IUserServices userServices, IReplyServices replyServices)
 {
     this._messageServices = messageServices;
     this._userServices    = userServices;
     this._replyServices   = replyServices;
 }
コード例 #3
0
 public ReplyController(ITopicServices topicServices, IReplyServices replyServices)
 {
     this.topicServices = topicServices;
     this.replyServices = replyServices;
 }