public SubscribeDeleteJudge(IZEsJudgeRepository zEsJudgeRepository,
                             IMapper mapper) :
     base()
 {
     _zEsJudgeRepository = zEsJudgeRepository;
     _mapper             = mapper;
 }
 public GetJudgesInListQueryHandler(IMapper mapper,
                                    IJudgeRepository judgeRepository,
                                    IZEsJudgeRepository zEsjudgeRepository)
 {
     _mapper             = mapper;
     _judgeRepository    = judgeRepository;
     _zEsjudgeRepository = zEsjudgeRepository;
 }
 public EsRejectCallForSpeechCommandHandler(
     ISessionForEventSourcing sessionForEventSourcing, IMapper mapper,
     IZEsJudgeRepository zEsJudgeRepository)
 {
     _mapper = mapper;
     _sessionForEventSourcing = sessionForEventSourcing;
     _zEsJudgeRepository      = zEsJudgeRepository;
 }