コード例 #1
0
ファイル: TelegramService.cs プロジェクト: icekhab/Cornware
 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());
 }