Type.registerNamespace('ByblosServices');
ByblosServices.wsProducts=function() {
ByblosServices.wsProducts.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ByblosServices.wsProducts.prototype={
GetSynopsis:function(productId,succeededCallback, failedCallback, userContext) {
return this._invoke(ByblosServices.wsProducts.get_path(), 'GetSynopsis',false,{productId:productId},succeededCallback,failedCallback,userContext); }}
ByblosServices.wsProducts.registerClass('ByblosServices.wsProducts',Sys.Net.WebServiceProxy);
ByblosServices.wsProducts._staticInstance = new ByblosServices.wsProducts();
ByblosServices.wsProducts.set_path = function(value) { ByblosServices.wsProducts._staticInstance._path = value; }
ByblosServices.wsProducts.get_path = function() { return ByblosServices.wsProducts._staticInstance._path; }
ByblosServices.wsProducts.set_timeout = function(value) { ByblosServices.wsProducts._staticInstance._timeout = value; }
ByblosServices.wsProducts.get_timeout = function() { return ByblosServices.wsProducts._staticInstance._timeout; }
ByblosServices.wsProducts.set_defaultUserContext = function(value) { ByblosServices.wsProducts._staticInstance._userContext = value; }
ByblosServices.wsProducts.get_defaultUserContext = function() { return ByblosServices.wsProducts._staticInstance._userContext; }
ByblosServices.wsProducts.set_defaultSucceededCallback = function(value) { ByblosServices.wsProducts._staticInstance._succeeded = value; }
ByblosServices.wsProducts.get_defaultSucceededCallback = function() { return ByblosServices.wsProducts._staticInstance._succeeded; }
ByblosServices.wsProducts.set_defaultFailedCallback = function(value) { ByblosServices.wsProducts._staticInstance._failed = value; }
ByblosServices.wsProducts.get_defaultFailedCallback = function() { return ByblosServices.wsProducts._staticInstance._failed; }
ByblosServices.wsProducts.set_path("/services/wsProducts.asmx");
ByblosServices.wsProducts.GetSynopsis= function(productId,onSuccess,onFailed,userContext) {ByblosServices.wsProducts._staticInstance.GetSynopsis(productId,onSuccess,onFailed,userContext); }
