var AjaxProxy=function() {
AjaxProxy.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
AjaxProxy.prototype={
GetInterMapListings:function(MaxLatitude,MinLatitude,MaxLongitude,MinLongitude,SearchParams,succeededCallback, failedCallback, userContext) {
return this._invoke(AjaxProxy.get_path(), 'GetInterMapListings',false,{MaxLatitude:MaxLatitude,MinLatitude:MinLatitude,MaxLongitude:MaxLongitude,MinLongitude:MinLongitude,SearchParams:SearchParams},succeededCallback,failedCallback,userContext); },
GetFavoriteListingIDs:function(succeededCallback, failedCallback, userContext) {
return this._invoke(AjaxProxy.get_path(), 'GetFavoriteListingIDs',false,{},succeededCallback,failedCallback,userContext); },
GetGroupID:function(MaxLatitude,MinLatitude,MaxLongitude,MinLongitude,SearchParams,succeededCallback, failedCallback, userContext) {
return this._invoke(AjaxProxy.get_path(), 'GetGroupID',false,{MaxLatitude:MaxLatitude,MinLatitude:MinLatitude,MaxLongitude:MaxLongitude,MinLongitude:MinLongitude,SearchParams:SearchParams},succeededCallback,failedCallback,userContext); },
GetGroupIDForListingDetail:function(MaxLatitude,MinLatitude,MaxLongitude,MinLongitude,SearchParams,ListingID,succeededCallback, failedCallback, userContext) {
return this._invoke(AjaxProxy.get_path(), 'GetGroupIDForListingDetail',false,{MaxLatitude:MaxLatitude,MinLatitude:MinLatitude,MaxLongitude:MaxLongitude,MinLongitude:MinLongitude,SearchParams:SearchParams,ListingID:ListingID},succeededCallback,failedCallback,userContext); },
FavoritesAddRemove:function(Action,ListingID,succeededCallback, failedCallback, userContext) {
return this._invoke(AjaxProxy.get_path(), 'FavoritesAddRemove',false,{Action:Action,ListingID:ListingID},succeededCallback,failedCallback,userContext); },
GetCondoMaster:function(BuildingName,succeededCallback, failedCallback, userContext) {
return this._invoke(AjaxProxy.get_path(), 'GetCondoMaster',false,{BuildingName:BuildingName},succeededCallback,failedCallback,userContext); },
GetCondoMasterList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(AjaxProxy.get_path(), 'GetCondoMasterList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetCondoMasterByID:function(BuildingID,succeededCallback, failedCallback, userContext) {
return this._invoke(AjaxProxy.get_path(), 'GetCondoMasterByID',false,{BuildingID:BuildingID},succeededCallback,failedCallback,userContext); }}
AjaxProxy.registerClass('AjaxProxy',Sys.Net.WebServiceProxy);
AjaxProxy._staticInstance = new AjaxProxy();
AjaxProxy.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; AjaxProxy._staticInstance._path = value; }
AjaxProxy.get_path = function() { return AjaxProxy._staticInstance._path; }
AjaxProxy.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); }
AjaxProxy._staticInstance._timeout = value; }
AjaxProxy.get_timeout = function() { 
return AjaxProxy._staticInstance._timeout; }
AjaxProxy.set_defaultUserContext = function(value) { 
AjaxProxy._staticInstance._userContext = value; }
AjaxProxy.get_defaultUserContext = function() { 
return AjaxProxy._staticInstance._userContext; }
AjaxProxy.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; AjaxProxy._staticInstance._succeeded = value; }
AjaxProxy.get_defaultSucceededCallback = function() { 
return AjaxProxy._staticInstance._succeeded; }
AjaxProxy.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; AjaxProxy._staticInstance._failed = value; }
AjaxProxy.get_defaultFailedCallback = function() { 
return AjaxProxy._staticInstance._failed; }
AjaxProxy.set_path("/Proxies/AjaxProxy.asmx");
AjaxProxy.GetInterMapListings= function(MaxLatitude,MinLatitude,MaxLongitude,MinLongitude,SearchParams,onSuccess,onFailed,userContext) {AjaxProxy._staticInstance.GetInterMapListings(MaxLatitude,MinLatitude,MaxLongitude,MinLongitude,SearchParams,onSuccess,onFailed,userContext); }
AjaxProxy.GetFavoriteListingIDs= function(onSuccess,onFailed,userContext) {AjaxProxy._staticInstance.GetFavoriteListingIDs(onSuccess,onFailed,userContext); }
AjaxProxy.GetGroupID= function(MaxLatitude,MinLatitude,MaxLongitude,MinLongitude,SearchParams,onSuccess,onFailed,userContext) {AjaxProxy._staticInstance.GetGroupID(MaxLatitude,MinLatitude,MaxLongitude,MinLongitude,SearchParams,onSuccess,onFailed,userContext); }
AjaxProxy.GetGroupIDForListingDetail= function(MaxLatitude,MinLatitude,MaxLongitude,MinLongitude,SearchParams,ListingID,onSuccess,onFailed,userContext) {AjaxProxy._staticInstance.GetGroupIDForListingDetail(MaxLatitude,MinLatitude,MaxLongitude,MinLongitude,SearchParams,ListingID,onSuccess,onFailed,userContext); }
AjaxProxy.FavoritesAddRemove= function(Action,ListingID,onSuccess,onFailed,userContext) {AjaxProxy._staticInstance.FavoritesAddRemove(Action,ListingID,onSuccess,onFailed,userContext); }
AjaxProxy.GetCondoMaster= function(BuildingName,onSuccess,onFailed,userContext) {AjaxProxy._staticInstance.GetCondoMaster(BuildingName,onSuccess,onFailed,userContext); }
AjaxProxy.GetCondoMasterList= function(prefixText,count,onSuccess,onFailed,userContext) {AjaxProxy._staticInstance.GetCondoMasterList(prefixText,count,onSuccess,onFailed,userContext); }
AjaxProxy.GetCondoMasterByID= function(BuildingID,onSuccess,onFailed,userContext) {AjaxProxy._staticInstance.GetCondoMasterByID(BuildingID,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(AjaxResult) === 'undefined') {
var AjaxResult=gtc("AjaxResult");
AjaxResult.registerClass('AjaxResult');
}
