blob: ea29255a76f0bcca76a0ef047f666adbeb3c7280 [file] [log] [blame]
package sample.spring.service;
import sample.spring.bean.Weather;
public class WeatherSpringService{
Weather weather;
public void setWeather(Weather w){
weather = w;
}
public Weather getWeather(){
return weather;
}
}