Beispiel #1
0
 public TriggerRunnerService(ILogger <TriggerRunnerService> logger, IMemoryCache cache, ITelegramService telegram, IServiceScopeFactory scopeFactory, IVenjixOptionsService optionsService, IHttpClientFactory httpClientFactory)
 {
     _logger            = logger;
     _cache             = cache;
     _telegram          = telegram;
     _scopeFactory      = scopeFactory;
     _optionsService    = optionsService;
     _httpClientFactory = httpClientFactory;
 }
Beispiel #2
0
 public HomeController(ILogger <HomeController> logger, IVenjixOptionsService optionsService, IMapper mapper, ITelegramService telegramService, HealthCheckService healthCheck, VenjixContext context)
 {
     _logger          = logger;
     _optionsService  = optionsService;
     _mapper          = mapper;
     _telegramService = telegramService;
     _healthCheck     = healthCheck;
     _context         = context;
 }
Beispiel #3
0
 public TelegramService(ILogger <TelegramService> logger, IVenjixOptionsService optionsService, IHttpClientFactory httpClientFactory)
 {
     _logger            = logger;
     _optionsService    = optionsService;
     _httpClientFactory = httpClientFactory;
 }
Beispiel #4
0
 public ApiDataController(VenjixContext context, ITriggerRunnerService triggerRunner, IVenjixOptionsService optionsService)
 {
     _context        = context;
     _triggerRunner  = triggerRunner;
     _optionsService = optionsService;
 }