コード例 #1
0
ファイル: AstroData.cs プロジェクト: pprasit/Project
        public static void NewSQMInformation(STATIONNAME StationName, DEVICENAME DeviceName, SQM FieldName, Object Value, DateTime DataTimestamp)
        {
            StationHandler ExistingStation = KeeperData.FirstOrDefault(Item => Item.StationName == StationName);

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