Example #1
0
 public void OnNotify(IWeatherPayload payload)
 {
     Console.WriteLine($"** cell phone ** weather update --- {payload.CurrentTemprature}");
 }
Example #2
0
 public void OnNotify(IWeatherPayload payload)
 {
     Console.WriteLine($"** from TV ** updated weather is ---- {payload.CurrentTemprature}");
 }
Example #3
0
 public void SetCurrentWeather(IWeatherPayload currentWeather)
 {
     this.currentWeather = currentWeather;
     this.Notify();
 }