Exemple #1
0
        public WeatherDataPointHourly(WeatherDataPointDaily daily)
        {
            if (daily == null)
            {
                throw new ArgumentNullException(nameof(daily));
            }

            _parent = new WeakReference <WeatherDataPointDaily>(daily);
        }
Exemple #2
0
 public WeatherDataPointHourly(WeatherDataPointDaily daily, IWeatherDataPoint src) : this(daily)
 {
     SetProperties(source: src, destination: this);
 }