var PropertyMBRService=function() {
PropertyMBRService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PropertyMBRService.prototype={
GetMBR:function(property_id,succeededCallback, failedCallback, userContext) {
return this._invoke(PropertyMBRService.get_path(), 'GetMBR',false,{property_id:property_id},succeededCallback,failedCallback,userContext); }}
PropertyMBRService.registerClass('PropertyMBRService',Sys.Net.WebServiceProxy);
PropertyMBRService._staticInstance = new PropertyMBRService();
PropertyMBRService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; PropertyMBRService._staticInstance._path = value; }
PropertyMBRService.get_path = function() { return PropertyMBRService._staticInstance._path; }
PropertyMBRService.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); }
PropertyMBRService._staticInstance._timeout = value; }
PropertyMBRService.get_timeout = function() { 
return PropertyMBRService._staticInstance._timeout; }
PropertyMBRService.set_defaultUserContext = function(value) { 
PropertyMBRService._staticInstance._userContext = value; }
PropertyMBRService.get_defaultUserContext = function() { 
return PropertyMBRService._staticInstance._userContext; }
PropertyMBRService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; PropertyMBRService._staticInstance._succeeded = value; }
PropertyMBRService.get_defaultSucceededCallback = function() { 
return PropertyMBRService._staticInstance._succeeded; }
PropertyMBRService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; PropertyMBRService._staticInstance._failed = value; }
PropertyMBRService.get_defaultFailedCallback = function() { 
return PropertyMBRService._staticInstance._failed; }
PropertyMBRService.set_path("/visplanner/services/PropertyMBRService.asmx");
PropertyMBRService.GetMBR= function(property_id,onSuccess,onFailed,userContext) {PropertyMBRService._staticInstance.GetMBR(property_id,onSuccess,onFailed,userContext); }
