Esempio n. 1
0
 public BotCoreService(ISkypeInitService initService, ISkypeSendMessageService sendMessageService, ISkypeListener skypeListener, IHandleMessageService handeMessageService, IRmqListener rmqListener)
 {
     _initService         = initService;
     _sendMessageService  = sendMessageService;
     _skypeListener       = skypeListener;
     _handeMessageService = handeMessageService;
     _rmqListener         = rmqListener;
 }
Esempio n. 2
0
 public Update(
     IHandleMessageService handleMessageService,
     IHandleCallbackQueryService handleCallbackQueryService,
     IHandleInlineQueryService handleInlineQueryService,
     ICommandsService commandsService,
     IUpdateDtoService updateDtoService,
     IOptions <Library.Options.SentryOptions> sentryOptions)
 {
     _handleMessageService       = handleMessageService;
     _handleCallbackQueryService = handleCallbackQueryService;
     _handleInlineQueryService   = handleInlineQueryService;
     _commandsService            = commandsService;
     _updateDtoService           = updateDtoService;
     _sentryOptions = sentryOptions.Value;
 }