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