Type.registerNamespace('ApartmentSuperstores');
ApartmentSuperstores.PropertySearch=function() {
ApartmentSuperstores.PropertySearch.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ApartmentSuperstores.PropertySearch.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ApartmentSuperstores.PropertySearch._staticInstance.get_path();},
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
GetRentalCompletionList:function(prefixText,count,contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetRentalCompletionList',false,{prefixText:prefixText,count:count,contextKey:contextKey},succeededCallback,failedCallback,userContext); },
GetAllCompletionList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetAllCompletionList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
ApartmentSuperstores.PropertySearch.registerClass('ApartmentSuperstores.PropertySearch',Sys.Net.WebServiceProxy);
ApartmentSuperstores.PropertySearch._staticInstance = new ApartmentSuperstores.PropertySearch();
ApartmentSuperstores.PropertySearch.set_path = function(value) { ApartmentSuperstores.PropertySearch._staticInstance.set_path(value); }
ApartmentSuperstores.PropertySearch.get_path = function() { return ApartmentSuperstores.PropertySearch._staticInstance.get_path(); }
ApartmentSuperstores.PropertySearch.set_timeout = function(value) { ApartmentSuperstores.PropertySearch._staticInstance.set_timeout(value); }
ApartmentSuperstores.PropertySearch.get_timeout = function() { return ApartmentSuperstores.PropertySearch._staticInstance.get_timeout(); }
ApartmentSuperstores.PropertySearch.set_defaultUserContext = function(value) { ApartmentSuperstores.PropertySearch._staticInstance.set_defaultUserContext(value); }
ApartmentSuperstores.PropertySearch.get_defaultUserContext = function() { return ApartmentSuperstores.PropertySearch._staticInstance.get_defaultUserContext(); }
ApartmentSuperstores.PropertySearch.set_defaultSucceededCallback = function(value) { ApartmentSuperstores.PropertySearch._staticInstance.set_defaultSucceededCallback(value); }
ApartmentSuperstores.PropertySearch.get_defaultSucceededCallback = function() { return ApartmentSuperstores.PropertySearch._staticInstance.get_defaultSucceededCallback(); }
ApartmentSuperstores.PropertySearch.set_defaultFailedCallback = function(value) { ApartmentSuperstores.PropertySearch._staticInstance.set_defaultFailedCallback(value); }
ApartmentSuperstores.PropertySearch.get_defaultFailedCallback = function() { return ApartmentSuperstores.PropertySearch._staticInstance.get_defaultFailedCallback(); }
ApartmentSuperstores.PropertySearch.set_path("/PropertySearch.asmx");
ApartmentSuperstores.PropertySearch.HelloWorld= function(onSuccess,onFailed,userContext) {ApartmentSuperstores.PropertySearch._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
ApartmentSuperstores.PropertySearch.GetRentalCompletionList= function(prefixText,count,contextKey,onSuccess,onFailed,userContext) {ApartmentSuperstores.PropertySearch._staticInstance.GetRentalCompletionList(prefixText,count,contextKey,onSuccess,onFailed,userContext); }
ApartmentSuperstores.PropertySearch.GetAllCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {ApartmentSuperstores.PropertySearch._staticInstance.GetAllCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
