var WeatherSlides=function() {
WeatherSlides.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WeatherSlides.prototype={
GetPreviewSlides:function(category,forecast,succeededCallback, failedCallback, userContext) {
return this._invoke(WeatherSlides.get_path(), 'GetPreviewSlides',false,{category:category,forecast:forecast},succeededCallback,failedCallback,userContext); },
PopulateWeatherForecast:function(context,succeededCallback, failedCallback, userContext) {
return this._invoke(WeatherSlides.get_path(), 'PopulateWeatherForecast',false,{context:context},succeededCallback,failedCallback,userContext); }}
WeatherSlides.registerClass('WeatherSlides',Sys.Net.WebServiceProxy);
WeatherSlides._staticInstance = new WeatherSlides();
WeatherSlides.set_path = function(value) { WeatherSlides._staticInstance._path = value; }
WeatherSlides.get_path = function() { return WeatherSlides._staticInstance._path; }
WeatherSlides.set_timeout = function(value) { WeatherSlides._staticInstance._timeout = value; }
WeatherSlides.get_timeout = function() { return WeatherSlides._staticInstance._timeout; }
WeatherSlides.set_defaultUserContext = function(value) { WeatherSlides._staticInstance._userContext = value; }
WeatherSlides.get_defaultUserContext = function() { return WeatherSlides._staticInstance._userContext; }
WeatherSlides.set_defaultSucceededCallback = function(value) { WeatherSlides._staticInstance._succeeded = value; }
WeatherSlides.get_defaultSucceededCallback = function() { return WeatherSlides._staticInstance._succeeded; }
WeatherSlides.set_defaultFailedCallback = function(value) { WeatherSlides._staticInstance._failed = value; }
WeatherSlides.get_defaultFailedCallback = function() { return WeatherSlides._staticInstance._failed; }
WeatherSlides.set_path("/Services/WeatherSlides.asmx");
WeatherSlides.GetPreviewSlides= function(category,forecast,onSuccess,onFailed,userContext) {WeatherSlides._staticInstance.GetPreviewSlides(category,forecast,onSuccess,onFailed,userContext); }
WeatherSlides.PopulateWeatherForecast= function(context,onSuccess,onFailed,userContext) {WeatherSlides._staticInstance.PopulateWeatherForecast(context,onSuccess,onFailed,userContext); }
