示例#1
0
 public SubscribeSubmitCallForSpeech(IZEsCallForSpeechRepository zEsCallForSpeechRepository,
                                     IMapper mapper) :
     base()
 {
     _ZEsCallForSpeechRepository = zEsCallForSpeechRepository;
     _mapper = mapper;
 }
示例#2
0
 public SubscribePreminalAcceptCallForSpeech(
     IZEsCallForSpeechRepository zEsCallForSpeechRepository,
     IMapper mapper) :
     base()
 {
     _ZEsCallForSpeechRepository = zEsCallForSpeechRepository;
     _mapper = mapper;
 }
 public GetCallForSpeechQueryHandler(ICallForSpeechRepository callRepository,
                                     IZEsCallForSpeechRepository zEscallRepository,
                                     IMapper mapper)
 {
     _mapper            = mapper;
     _zEscallRepository = zEscallRepository;
     _callRepository    = callRepository;
 }