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