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