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