Ejemplo n.º 1
0
 public UsersQueryHandler(
     ISwizzerMapper mapper,
     SwizzerContext context)
 {
     this._mapper  = mapper;
     this._context = context;
 }
Ejemplo n.º 2
0
 public MessageCommandHandler(
     ISwizzerMapper swizzerMapper,
     SwizzerContext context)
 {
     this._swizzerMapper = swizzerMapper;
     this._context       = context;
 }
Ejemplo n.º 3
0
 public UserCommandHendler(ISecurityService securityService, ICacheService cacheService, ISwizzerMapper swizzerMapper, SwizzerContext swizzerContext)
 {
     _securityService = securityService;
     _cacheService    = cacheService;
     _swizzerMapper   = swizzerMapper;
     _swizzerContext  = swizzerContext;
 }
Ejemplo n.º 4
0
 public ViewModelFacade(
     ICommandDispatcher commandDispatcher,
     IQueryDispatcher queryDispatcher,
     ISwizzerMapper swizzerMapper)
 {
     CommandDispatcher = commandDispatcher;
     QueryDispatcher   = queryDispatcher;
     SwizzerMapper     = swizzerMapper;
 }
Ejemplo n.º 5
0
 public AuthCommandHandler(
     ICacheService cacheService,
     ISwizzerMapper mapper,
     ISecurityService securityService,
     SwizzerContext swizzerContext)
 {
     _cacheService    = cacheService;
     _mapper          = mapper;
     _securityService = securityService;
     _swizzerContext  = swizzerContext;
 }
Ejemplo n.º 6
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;
 }
Ejemplo n.º 7
0
 public ApiHubWebServiceFacade(ApiSettings apiSettings, IEventAggregator eventAggregator, ISwizzerMapper mapper)
 {
     ApiSettings     = apiSettings;
     EventAggregator = eventAggregator;
     Mapper          = mapper;
 }