private void CurrentConditionReportMsg(object sender, NewWeatherChangeEventArgs eventArgs)
 {
     Console.WriteLine($"Statistic report was changed");
 }
Example #2
0
        protected virtual void OnNewWeatherChange(NewWeatherChangeEventArgs e)
        {
            var temp = NewWeatherChange;

            temp?.Invoke(this, e);
        }