var CustomerMgt=function() {
CustomerMgt.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CustomerMgt.prototype={
CheckUser:function(email,password,succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'CheckUser',false,{email:email,password:password},succeededCallback,failedCallback,userContext); },
ForgetPassword:function(email,succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'ForgetPassword',false,{email:email},succeededCallback,failedCallback,userContext); },
SetAdultCheck:function(succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'SetAdultCheck',false,{},succeededCallback,failedCallback,userContext); },
TellAFriend:function(friendName,friendEmail,name,email,comment,productId,succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'TellAFriend',false,{friendName:friendName,friendEmail:friendEmail,name:name,email:email,comment:comment,productId:productId},succeededCallback,failedCallback,userContext); },
GetMyProxisBlock:function(succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'GetMyProxisBlock',false,{},succeededCallback,failedCallback,userContext); },
GetB2BBlock:function(succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'GetB2BBlock',false,{},succeededCallback,failedCallback,userContext); },
GetNewsletterBlock:function(succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'GetNewsletterBlock',false,{},succeededCallback,failedCallback,userContext); },
RemoveWishListLine:function(lineId,succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'RemoveWishListLine',false,{lineId:lineId},succeededCallback,failedCallback,userContext); },
EmptyWishList:function(succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'EmptyWishList',false,{},succeededCallback,failedCallback,userContext); },
RemoveProxismaniaLine:function(proxismaniaId,lineId,succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'RemoveProxismaniaLine',false,{proxismaniaId:proxismaniaId,lineId:lineId},succeededCallback,failedCallback,userContext); },
DeleteProxisMania:function(proxismaniaId,succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'DeleteProxisMania',false,{proxismaniaId:proxismaniaId},succeededCallback,failedCallback,userContext); },
RemoveFromReviews:function(lineId,succeededCallback, failedCallback, userContext) {
return this._invoke(CustomerMgt.get_path(), 'RemoveFromReviews',false,{lineId:lineId},succeededCallback,failedCallback,userContext); }}
CustomerMgt.registerClass('CustomerMgt',Sys.Net.WebServiceProxy);
CustomerMgt._staticInstance = new CustomerMgt();
CustomerMgt.set_path = function(value) { CustomerMgt._staticInstance._path = value; }
CustomerMgt.get_path = function() { return CustomerMgt._staticInstance._path; }
CustomerMgt.set_timeout = function(value) { CustomerMgt._staticInstance._timeout = value; }
CustomerMgt.get_timeout = function() { return CustomerMgt._staticInstance._timeout; }
CustomerMgt.set_defaultUserContext = function(value) { CustomerMgt._staticInstance._userContext = value; }
CustomerMgt.get_defaultUserContext = function() { return CustomerMgt._staticInstance._userContext; }
CustomerMgt.set_defaultSucceededCallback = function(value) { CustomerMgt._staticInstance._succeeded = value; }
CustomerMgt.get_defaultSucceededCallback = function() { return CustomerMgt._staticInstance._succeeded; }
CustomerMgt.set_defaultFailedCallback = function(value) { CustomerMgt._staticInstance._failed = value; }
CustomerMgt.get_defaultFailedCallback = function() { return CustomerMgt._staticInstance._failed; }
CustomerMgt.set_path("/WebServices/CustomerMgt.asmx");
CustomerMgt.CheckUser= function(email,password,onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.CheckUser(email,password,onSuccess,onFailed,userContext); }
CustomerMgt.ForgetPassword= function(email,onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.ForgetPassword(email,onSuccess,onFailed,userContext); }
CustomerMgt.SetAdultCheck= function(onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.SetAdultCheck(onSuccess,onFailed,userContext); }
CustomerMgt.TellAFriend= function(friendName,friendEmail,name,email,comment,productId,onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.TellAFriend(friendName,friendEmail,name,email,comment,productId,onSuccess,onFailed,userContext); }
CustomerMgt.GetMyProxisBlock= function(onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.GetMyProxisBlock(onSuccess,onFailed,userContext); }
CustomerMgt.GetB2BBlock= function(onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.GetB2BBlock(onSuccess,onFailed,userContext); }
CustomerMgt.GetNewsletterBlock= function(onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.GetNewsletterBlock(onSuccess,onFailed,userContext); }
CustomerMgt.RemoveWishListLine= function(lineId,onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.RemoveWishListLine(lineId,onSuccess,onFailed,userContext); }
CustomerMgt.EmptyWishList= function(onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.EmptyWishList(onSuccess,onFailed,userContext); }
CustomerMgt.RemoveProxismaniaLine= function(proxismaniaId,lineId,onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.RemoveProxismaniaLine(proxismaniaId,lineId,onSuccess,onFailed,userContext); }
CustomerMgt.DeleteProxisMania= function(proxismaniaId,onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.DeleteProxisMania(proxismaniaId,onSuccess,onFailed,userContext); }
CustomerMgt.RemoveFromReviews= function(lineId,onSuccess,onFailed,userContext) {CustomerMgt._staticInstance.RemoveFromReviews(lineId,onSuccess,onFailed,userContext); }
