Esempio n. 1
0
 public WeatherDataLoader(LocationData location, IWeatherLoadedListener listener, IWeatherErrorListener errorListener)
     : this(location, listener)
 {
     errorCallback = errorListener;
 }
Esempio n. 2
0
 public void SetWeatherLoadedListener(IWeatherLoadedListener listener)
 {
     callback = listener;
 }
Esempio n. 3
0
 public WeatherDataLoader(LocationData location, IWeatherLoadedListener listener)
     : this(location)
 {
     callback = listener;
 }