Beispiel #1
0
 public ListeningState(
     ITwilioService twilioService,
     IListeningActionService listeningActionService,
     IMessageService messageService)
 {
     _twilioService          = twilioService;
     _listeningActionService = listeningActionService;
     _messageService         = messageService;
 }
Beispiel #2
0
        public StateManager(
            IGoogleAnalyticsService googleAnalyticsService,
            IListeningActionService listeningActionService,
            IMessageService messageService,
            IOrderService orderService,
            ITwilioService twilioService)
        {
            _googleAnalyticsService = googleAnalyticsService;
            _listeningActionService = listeningActionService;
            _messageService         = messageService;
            _orderService           = orderService;
            _twilioService          = twilioService;

            BuildDictionary();
        }