Exemple #1
0
        public static void NewSEEINGInformation(STATIONNAME StationName, DEVICENAME DeviceName, SEEING FieldName, Object Value, DateTime DataTimestamp)
        {
            StationHandler ExistingStation = KeeperData.FirstOrDefault(Item => Item.StationName == StationName);

            if (ExistingStation != null)
            {
                ExistingStation.NewSEEINGInformation(DeviceName, FieldName, Value, DataTimestamp);
            }
        }