public EsRejectCallForSpeechCommandHandler(
     ISessionForEventSourcing sessionForEventSourcing, IMapper mapper,
     IZEsJudgeRepository zEsJudgeRepository)
 {
     _mapper = mapper;
     _sessionForEventSourcing = sessionForEventSourcing;
     _zEsJudgeRepository      = zEsJudgeRepository;
 }
示例#2
0
 public EsEvaluateCallForSpeechCommandHandler(
     ISessionForEventSourcing sessionForEventSourcing, IMapper mapper,
     IScoringRulesFactory scoringRulesFactory)
 {
     _mapper = mapper;
     _sessionForEventSourcing = sessionForEventSourcing;
     _scoringRulesFactory     = scoringRulesFactory;
 }
示例#3
0
 public EsUpdateJudgeCommandHandler(
     ISessionForEventSourcing sessionForEventSourcing, IMapper mapper)
 {
     _mapper = mapper;
     _sessionForEventSourcing = sessionForEventSourcing;
 }
示例#4
0
 public ESCreateCategoryCommandHandler(
     ISessionForEventSourcing sessionForEventSourcing, IMapper mapper)
 {
     _mapper = mapper;
     _sessionForEventSourcing = sessionForEventSourcing;
 }
 public EsSubmitDeveloperCommandHandler(
     ISessionForEventSourcing sessionForEventSourcing, IMapper mapper)
 {
     _mapper = mapper;
     _sessionForEventSourcing = sessionForEventSourcing;
 }
示例#6
0
 public EsSubmitCallForSpeechCommandHandler(
     ISessionForEventSourcing sessionForEventSourcing, IMapper mapper)
 {
     _mapper = mapper;
     _sessionForEventSourcing = sessionForEventSourcing;
 }