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