public static void NewWEATHERSTATIONInformation(STATIONNAME StationName, DEVICENAME DeviceName, WEATHERSTATION FieldName, Object Value, DateTime DataTimestamp) { StationHandler ExistingStation = KeeperData.FirstOrDefault(Item => Item.StationName == StationName); if (ExistingStation != null) { ExistingStation.NewWEATHERSTATIONInformation(DeviceName, FieldName, Value, DataTimestamp); } }