public WeatherDataPointHourly(WeatherDataPointDaily daily) { if (daily == null) { throw new ArgumentNullException(nameof(daily)); } _parent = new WeakReference <WeatherDataPointDaily>(daily); }
public WeatherDataPointHourly(WeatherDataPointDaily daily, IWeatherDataPoint src) : this(daily) { SetProperties(source: src, destination: this); }