Esempio n. 1
0
 public ReplyController(IReplyServices replyServices)
 {
     _replyServices = replyServices;
 }
Esempio n. 2
0
 public MessageController(IMessageServices messageServices, IUserServices userServices, IReplyServices replyServices)
 {
     this._messageServices = messageServices;
     this._userServices    = userServices;
     this._replyServices   = replyServices;
 }
Esempio n. 3
0
 public ReplyController(ITopicServices topicServices, IReplyServices replyServices)
 {
     this.topicServices = topicServices;
     this.replyServices = replyServices;
 }