Ejemplo n.º 1
0
 public CommentsController(CommentsContext context, IUserMock user)
 {
     this._context             = context;
     this._user                = user;
     this._loggerCommunication = new LoggerCommunication();
 }
Ejemplo n.º 2
0
 public ReactionsController(ReactionsContext context, IUserMock user, IPostMock post)
 {
     this._context = context;
     this._user    = user;
     this._post    = post;
 }
 public MessagingController(MessagingContext context, IUserMock user)
 {
     this._context             = context;
     this._user                = user;
     this._loggerCommunication = new LoggerCommunication();
 }