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

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