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

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