Example #1
0
 public UserCommandHandler(
     IEventAggregator eventAggregator,
     ICurrentUserContext currentUserContext,
     ISwizzerMapper mapper,
     ApiSettings apiSettings,
     IApiHttpWebService apiHttpWebService)
 {
     this._eventAggregator    = eventAggregator;
     this._currentUserContext = currentUserContext;
     this._mapper             = mapper;
     this._apiSettings        = apiSettings;
     this._apiHttpWebService  = apiHttpWebService;
 }
Example #2
0
 public MessagesQueryHandler(IApiHttpWebService apiHttpWebService)
 {
     _apiHttpWebService = apiHttpWebService;
 }
Example #3
0
 public UserQueryHandler(IApiHttpWebService apiHttpWebService)
 {
     this._apiHttpWebService = apiHttpWebService;
 }