var ManageCustomerService=function() {
ManageCustomerService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ManageCustomerService.prototype={
GetUserInformation:function(userID,succeededCallback, failedCallback, userContext) {
return this._invoke(ManageCustomerService.get_path(), 'GetUserInformation',false,{userID:userID},succeededCallback,failedCallback,userContext); },
SendEmailNotification:function(emailAddress,message,succeededCallback, failedCallback, userContext) {
return this._invoke(ManageCustomerService.get_path(), 'SendEmailNotification',false,{emailAddress:emailAddress,message:message},succeededCallback,failedCallback,userContext); },
SendPasswordHelpRequestEmail:function(emailAddress,phoneNumber,name,companyName,message,succeededCallback, failedCallback, userContext) {
return this._invoke(ManageCustomerService.get_path(), 'SendPasswordHelpRequestEmail',false,{emailAddress:emailAddress,phoneNumber:phoneNumber,name:name,companyName:companyName,message:message},succeededCallback,failedCallback,userContext); },
SendAccountRequestEmail:function(emailAddress,phoneNumber,name,companyName,FMBAdmin,message,succeededCallback, failedCallback, userContext) {
return this._invoke(ManageCustomerService.get_path(), 'SendAccountRequestEmail',false,{emailAddress:emailAddress,phoneNumber:phoneNumber,name:name,companyName:companyName,FMBAdmin:FMBAdmin,message:message},succeededCallback,failedCallback,userContext); }}
ManageCustomerService.registerClass('ManageCustomerService',Sys.Net.WebServiceProxy);
ManageCustomerService._staticInstance = new ManageCustomerService();
ManageCustomerService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; ManageCustomerService._staticInstance._path = value; }
ManageCustomerService.get_path = function() { return ManageCustomerService._staticInstance._path; }
ManageCustomerService.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
ManageCustomerService._staticInstance._timeout = value; }
ManageCustomerService.get_timeout = function() { 
return ManageCustomerService._staticInstance._timeout; }
ManageCustomerService.set_defaultUserContext = function(value) { 
ManageCustomerService._staticInstance._userContext = value; }
ManageCustomerService.get_defaultUserContext = function() { 
return ManageCustomerService._staticInstance._userContext; }
ManageCustomerService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; ManageCustomerService._staticInstance._succeeded = value; }
ManageCustomerService.get_defaultSucceededCallback = function() { 
return ManageCustomerService._staticInstance._succeeded; }
ManageCustomerService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; ManageCustomerService._staticInstance._failed = value; }
ManageCustomerService.get_defaultFailedCallback = function() { 
return ManageCustomerService._staticInstance._failed; }
ManageCustomerService.set_path("/tsacecaweb/AjaxServices/ManageCustomerService.asmx");
ManageCustomerService.GetUserInformation= function(userID,onSuccess,onFailed,userContext) {ManageCustomerService._staticInstance.GetUserInformation(userID,onSuccess,onFailed,userContext); }
ManageCustomerService.SendEmailNotification= function(emailAddress,message,onSuccess,onFailed,userContext) {ManageCustomerService._staticInstance.SendEmailNotification(emailAddress,message,onSuccess,onFailed,userContext); }
ManageCustomerService.SendPasswordHelpRequestEmail= function(emailAddress,phoneNumber,name,companyName,message,onSuccess,onFailed,userContext) {ManageCustomerService._staticInstance.SendPasswordHelpRequestEmail(emailAddress,phoneNumber,name,companyName,message,onSuccess,onFailed,userContext); }
ManageCustomerService.SendAccountRequestEmail= function(emailAddress,phoneNumber,name,companyName,FMBAdmin,message,onSuccess,onFailed,userContext) {ManageCustomerService._staticInstance.SendAccountRequestEmail(emailAddress,phoneNumber,name,companyName,FMBAdmin,message,onSuccess,onFailed,userContext); }
