var Async=function() {
Async.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Async.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Async._staticInstance.get_path();},
SearchPropertyByName:function(prefixText,count,succeededCallback, failedCallback, userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="count" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SearchPropertyByName',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetPropertiesAssociatedWithCity:function(cityID,succeededCallback, failedCallback, userContext) {
/// <param name="cityID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetPropertiesAssociatedWithCity',false,{cityID:cityID},succeededCallback,failedCallback,userContext); }}
Async.registerClass('Async',Sys.Net.WebServiceProxy);
Async._staticInstance = new Async();
Async.set_path = function(value) {
Async._staticInstance.set_path(value); }
Async.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return Async._staticInstance.get_path();}
Async.set_timeout = function(value) {
Async._staticInstance.set_timeout(value); }
Async.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return Async._staticInstance.get_timeout(); }
Async.set_defaultUserContext = function(value) { 
Async._staticInstance.set_defaultUserContext(value); }
Async.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return Async._staticInstance.get_defaultUserContext(); }
Async.set_defaultSucceededCallback = function(value) { 
 Async._staticInstance.set_defaultSucceededCallback(value); }
Async.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return Async._staticInstance.get_defaultSucceededCallback(); }
Async.set_defaultFailedCallback = function(value) { 
Async._staticInstance.set_defaultFailedCallback(value); }
Async.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return Async._staticInstance.get_defaultFailedCallback(); }
Async.set_path("/Async.asmx");
Async.SearchPropertyByName= function(prefixText,count,onSuccess,onFailed,userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="count" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Async._staticInstance.SearchPropertyByName(prefixText,count,onSuccess,onFailed,userContext); }
Async.GetPropertiesAssociatedWithCity= function(cityID,onSuccess,onFailed,userContext) {
/// <param name="cityID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Async._staticInstance.GetPropertiesAssociatedWithCity(cityID,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('Condos.PL');
if (typeof(Condos.PL.PropertyInformation) === 'undefined') {
Condos.PL.PropertyInformation=gtc("Condos.PL.PropertyInformation");
Condos.PL.PropertyInformation.registerClass('Condos.PL.PropertyInformation');
}

