var PriceService=function() {
PriceService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PriceService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return PriceService._staticInstance.get_path();},
GetPrice:function(mailbox,storage,succeededCallback, failedCallback, userContext) {
/// <param name="mailbox" type="Number">System.Int32</param>
/// <param name="storage" 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(), 'GetPrice',false,{mailbox:mailbox,storage:storage},succeededCallback,failedCallback,userContext); }}
PriceService.registerClass('PriceService',Sys.Net.WebServiceProxy);
PriceService._staticInstance = new PriceService();
PriceService.set_path = function(value) {
PriceService._staticInstance.set_path(value); }
PriceService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return PriceService._staticInstance.get_path();}
PriceService.set_timeout = function(value) {
PriceService._staticInstance.set_timeout(value); }
PriceService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return PriceService._staticInstance.get_timeout(); }
PriceService.set_defaultUserContext = function(value) { 
PriceService._staticInstance.set_defaultUserContext(value); }
PriceService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return PriceService._staticInstance.get_defaultUserContext(); }
PriceService.set_defaultSucceededCallback = function(value) { 
 PriceService._staticInstance.set_defaultSucceededCallback(value); }
PriceService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return PriceService._staticInstance.get_defaultSucceededCallback(); }
PriceService.set_defaultFailedCallback = function(value) { 
PriceService._staticInstance.set_defaultFailedCallback(value); }
PriceService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return PriceService._staticInstance.get_defaultFailedCallback(); }
PriceService.set_path("/PriceService.asmx");
PriceService.GetPrice= function(mailbox,storage,onSuccess,onFailed,userContext) {
/// <param name="mailbox" type="Number">System.Int32</param>
/// <param name="storage" 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>
PriceService._staticInstance.GetPrice(mailbox,storage,onSuccess,onFailed,userContext); }

