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