public ChatMembersAddedInstruction(ITelegramBotClient telegramBotClient, MessageEventArgs messageEventArgs, BotPlatform botPlatform) { _telegramBotClient = telegramBotClient; _messageEventArgs = messageEventArgs; _commandChannelService = botPlatform.Resolve <ICommandChannelService>(); }
public ListChannelsInstruction(ITelegramBotClient telegramBotClient, CallbackQueryEventArgs callbackQueryEventArgs, BotPlatform botPlatform) { _telegramBotClient = telegramBotClient; _callbackQueryEventArgs = callbackQueryEventArgs; _queryChannelService = botPlatform.Resolve <IQueryChannelService>(); _queryRssChatService = botPlatform.Resolve <IQueryRssChatRelationService>(); }
public RemoveGroup_Instruction(ITelegramBotClient telegramBotClient, CallbackQueryEventArgs callbackQueryEventArgs, BotPlatform botPlatform) { _telegramBotClient = telegramBotClient; _callbackQueryEventArgs = callbackQueryEventArgs; _commandChannelService = botPlatform.Resolve <ICommandChannelService>(); }
public OnCallBackQueryNextInstruction(ITelegramBotClient telegramBotClient, CallbackQueryEventArgs callbackQueryEventArgs, BotPlatform botPlatform) { _telegramBotClient = telegramBotClient; _callbackQueryEventArgs = callbackQueryEventArgs; _botPlatform = botPlatform; }