Пример #1
0
 public DatapointEvent(Datapoint c, Datapoint p)
 {
     Current  = c;
     Previous = p;
 }
Пример #2
0
 public TypedDatapoint(Datapoint dp)
 {
     UnderlyingDatapoint = dp;
 }
Пример #3
0
 public void SetRoomValue(Datapoint dp, object newValue)
 {
     dp.SetRoomValue(newValue, typeof(T));
 }