var GetAllotment=function() {
GetAllotment.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GetAllotment.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return GetAllotment._staticInstance.get_path();},
LoadBalance:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LoadBalance',false,{},succeededCallback,failedCallback,userContext); },
LoadRunningBalance:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LoadRunningBalance',false,{},succeededCallback,failedCallback,userContext); }}
GetAllotment.registerClass('GetAllotment',Sys.Net.WebServiceProxy);
GetAllotment._staticInstance = new GetAllotment();
GetAllotment.set_path = function(value) { GetAllotment._staticInstance.set_path(value); }
GetAllotment.get_path = function() { return GetAllotment._staticInstance.get_path(); }
GetAllotment.set_timeout = function(value) { GetAllotment._staticInstance.set_timeout(value); }
GetAllotment.get_timeout = function() { return GetAllotment._staticInstance.get_timeout(); }
GetAllotment.set_defaultUserContext = function(value) { GetAllotment._staticInstance.set_defaultUserContext(value); }
GetAllotment.get_defaultUserContext = function() { return GetAllotment._staticInstance.get_defaultUserContext(); }
GetAllotment.set_defaultSucceededCallback = function(value) { GetAllotment._staticInstance.set_defaultSucceededCallback(value); }
GetAllotment.get_defaultSucceededCallback = function() { return GetAllotment._staticInstance.get_defaultSucceededCallback(); }
GetAllotment.set_defaultFailedCallback = function(value) { GetAllotment._staticInstance.set_defaultFailedCallback(value); }
GetAllotment.get_defaultFailedCallback = function() { return GetAllotment._staticInstance.get_defaultFailedCallback(); }
GetAllotment.set_path("/msCompanystore/WSAJAX/GetAllotment.asmx");
GetAllotment.LoadBalance= function(onSuccess,onFailed,userContext) {GetAllotment._staticInstance.LoadBalance(onSuccess,onFailed,userContext); }
GetAllotment.LoadRunningBalance= function(onSuccess,onFailed,userContext) {GetAllotment._staticInstance.LoadRunningBalance(onSuccess,onFailed,userContext); }
