Beispiel #1
0
 public TelegramLoggerProvider(IOptionsMonitor <TelegramLoggerOptions> config, ITelegramMessageService telegramMessageService)
 {
     _config = config.CurrentValue;
     _telegramMessageService = telegramMessageService;
 }
Beispiel #2
0
 public TelegramLogger(string name, TelegramLoggerOptions config, ITelegramMessageService telegramMessageService)
 {
     _name   = name;
     _config = config;
     _telegramMessageService = telegramMessageService;
 }