Пример #1
0
        public static void RetrieveAllSensorReadoutsQBE(IObjectContainer db)
        {
            SensorReadout proto  = new SensorReadout(DateTime.MinValue, null, null);
            var           result = db.QueryByExample(proto);

            ListResult(result);
        }
Пример #2
0
 public SensorReadout[] GetHistory()
 {
     SensorReadout[] history = new SensorReadout[_history.Count];
     _history.CopyTo(history, 0);
     return history;
 }
Пример #3
0
 public SensorReadout[] GetHistory()
 {
     SensorReadout[] history = new SensorReadout[_history.Count];
     _history.CopyTo(history, 0);
     return(history);
 }
Пример #4
0
 public bool Match(SensorReadout candidate)
 {
     return(true);
 }
		public bool Match(SensorReadout candidate)
		{
			return true;
		}
Пример #6
0
 public static void RetrieveAllSensorReadoutsQBE(IObjectContainer db)
 {
     SensorReadout proto = new SensorReadout(DateTime.MinValue, null, null);
     IObjectSet result = db.QueryByExample(proto);
     ListResult(result);
 }