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

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