var FeaturedPropertyService=function() {
FeaturedPropertyService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
FeaturedPropertyService.prototype={
NextFeaturedProperty:function(LastFeaturedPropertyId,succeededCallback, failedCallback, userContext) {
return this._invoke(FeaturedPropertyService.get_path(), 'NextFeaturedProperty',false,{LastFeaturedPropertyId:LastFeaturedPropertyId},succeededCallback,failedCallback,userContext); }}
FeaturedPropertyService.registerClass('FeaturedPropertyService',Sys.Net.WebServiceProxy);
FeaturedPropertyService._staticInstance = new FeaturedPropertyService();
FeaturedPropertyService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; FeaturedPropertyService._staticInstance._path = value; }
FeaturedPropertyService.get_path = function() { return FeaturedPropertyService._staticInstance._path; }
FeaturedPropertyService.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
FeaturedPropertyService._staticInstance._timeout = value; }
FeaturedPropertyService.get_timeout = function() { 
return FeaturedPropertyService._staticInstance._timeout; }
FeaturedPropertyService.set_defaultUserContext = function(value) { 
FeaturedPropertyService._staticInstance._userContext = value; }
FeaturedPropertyService.get_defaultUserContext = function() { 
return FeaturedPropertyService._staticInstance._userContext; }
FeaturedPropertyService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; FeaturedPropertyService._staticInstance._succeeded = value; }
FeaturedPropertyService.get_defaultSucceededCallback = function() { 
return FeaturedPropertyService._staticInstance._succeeded; }
FeaturedPropertyService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; FeaturedPropertyService._staticInstance._failed = value; }
FeaturedPropertyService.get_defaultFailedCallback = function() { 
return FeaturedPropertyService._staticInstance._failed; }
FeaturedPropertyService.set_path("/FeaturedPropertyService.asmx");
FeaturedPropertyService.NextFeaturedProperty= function(LastFeaturedPropertyId,onSuccess,onFailed,userContext) {FeaturedPropertyService._staticInstance.NextFeaturedProperty(LastFeaturedPropertyId,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('BusinessObjects');
if (typeof(BusinessObjects.FeaturedPropertyInfo) === 'undefined') {
BusinessObjects.FeaturedPropertyInfo=gtc("BusinessObjects.FeaturedPropertyInfo");
BusinessObjects.FeaturedPropertyInfo.registerClass('BusinessObjects.FeaturedPropertyInfo');
}
