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