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