Esempio n. 1
0
 internal static InfluxPoints ToInfluxPoints(this MeasurementPoints points)
 {
     return(new InfluxPoints
     {
         points.Select(p => p.ToInfluxPoint())
     });
 }
Esempio n. 2
0
 protected Measurement(MeasurementPoints points)
 {
     Points = points;
 }