Exemplo n.º 1
0
 public MessageCommandHandler(
     ISwizzerMapper swizzerMapper,
     SwizzerContext context)
 {
     this._swizzerMapper = swizzerMapper;
     this._context       = context;
 }
Exemplo n.º 2
0
 public UsersQueryHandler(
     ISwizzerMapper mapper,
     SwizzerContext context)
 {
     this._mapper  = mapper;
     this._context = context;
 }
Exemplo n.º 3
0
 public UserCommandHendler(ISecurityService securityService, ICacheService cacheService, ISwizzerMapper swizzerMapper, SwizzerContext swizzerContext)
 {
     _securityService = securityService;
     _cacheService    = cacheService;
     _swizzerMapper   = swizzerMapper;
     _swizzerContext  = swizzerContext;
 }
Exemplo n.º 4
0
 public CommandDispatcher(
     IComponentContext componentContext,
     SwizzerContext swizzerContext)
 {
     _componentContext = componentContext;
     _swizzerContext   = swizzerContext;
 }
Exemplo n.º 5
0
 public AuthCommandHandler(
     ICacheService cacheService,
     ISwizzerMapper mapper,
     ISecurityService securityService,
     SwizzerContext swizzerContext)
 {
     _cacheService    = cacheService;
     _mapper          = mapper;
     _securityService = securityService;
     _swizzerContext  = swizzerContext;
 }
 public WeatherForecastController(
     SwizzerContext swizzerContext,
     ILogger <WeatherForecastController> logger)
 {
     _logger = logger;
 }