Exemplo n.º 1
0
 public Model.WeatherModel PrevWeather(string aRef)
 {
     Model.WeatherModel prev = Model.WeatherHold.GetWeather(aRef);
     return(prev);
 }
Exemplo n.º 2
0
 public void WeatherSaved(string endRef, string temp, string speed, string dir, string hum, string other)
 {
     Model.WeatherModel endConditions = new Model.WeatherModel(endRef, temp, speed, dir, hum, other);
     endConditions.WeatherToCollection(endConditions);
 }