Esempio n. 1
0
 public EnvSensorsStore(IOptions <InfluxDbOptions> options, InfluxDBClient influxDBClient)
 {
     _options        = options.Value;
     _influxDBClient = influxDBClient;
 }
 public InfluxDBClientProvider(IOptions <InfluxDbOptions> options)
 {
     _options = options.Value;
 }
Esempio n. 3
0
 public InfluxManagement(IOptions <InfluxDbOptions> options)
 {
     _options = options.Value;
 }
Esempio n. 4
0
 public AlertsStore(IOptions <InfluxDbOptions> options, InfluxDBClient influxDBClient)
 {
     _options        = options.Value;
     _influxDBClient = influxDBClient;
 }