Пример #1
0
 public EnvSensorsStore(IOptions <InfluxDbOptions> options, InfluxDBClient influxDBClient)
 {
     _options        = options.Value;
     _influxDBClient = influxDBClient;
 }
 public InfluxDBClientProvider(IOptions <InfluxDbOptions> options)
 {
     _options = options.Value;
 }
Пример #3
0
 public InfluxManagement(IOptions <InfluxDbOptions> options)
 {
     _options = options.Value;
 }
Пример #4
0
 public AlertsStore(IOptions <InfluxDbOptions> options, InfluxDBClient influxDBClient)
 {
     _options        = options.Value;
     _influxDBClient = influxDBClient;
 }