public TelegramCommandProcessor( ITelegramApiService telegramApiService, IAuthService authService, ITokenService tokenService) { _telegramApiService = telegramApiService; _authService = authService; _tokenService = tokenService; }
public TranslationBot( ITranslationService translationService, ITelegramApiService telegramApi, IOptions <TelegramOptions> telegramOptions) { _translationService = translationService; _telegramApi = telegramApi; _telegramOptions = telegramOptions; }
public TriggerCheckerService( ITriggerRepository triggerRepository, ICurrencyRepository currencyRepository, ITelegramApiService telegramApiService) { _triggerRepository = triggerRepository; _currencyRepository = currencyRepository; _telegramApiService = telegramApiService; }