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