Пример #1
0
 public NexmoEventController(IEventServiceHandler eventServiceHandler,
                             ICallChannelService callChannelService,
                             IActiveCallRepository activeCallRepository)
 {
     _eventServiceHandler  = eventServiceHandler;
     _callChannelService   = callChannelService;
     _activeCallRepository = activeCallRepository;
 }
Пример #2
0
 public NexmoCallbackController(NccoQueue nccoQueue,
                                ICallChannelService callChannelService,
                                IAgentRepository agentRepository,
                                IActiveCallRepository activeCallRepository)
 {
     _nccoQueue            = nccoQueue;
     _callChannelService   = callChannelService;
     _agentRepository      = agentRepository;
     _activeCallRepository = activeCallRepository;
 }