示例#1
0
 public TelegramService(TelegramBot bot, ITelegramClientRepository telegramClientRepository)
 {
     _bot = bot;
     _telegramClientRepository = telegramClientRepository;
 }
示例#2
0
 public TelegramBot(ITelegramClientRepository telegramClientRepository)
 {
     _telegramClientRepository = telegramClientRepository;
     bot = new TelegramBotClient("541665787:AAHFS6KwZrheP7frlCS5SGkuq3AFrBBCiuY");
     Task.Run(async() => await Run());
 }