Esempio n. 1
0
        public static void NewLANOUTLETInformation(STATIONNAME StationName, DEVICENAME DeviceName, LANOUTLET FieldName, Object Value, DateTime DataTimestamp)
        {
            StationHandler ExistingStation = KeeperData.FirstOrDefault(Item => Item.StationName == StationName);

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