var WsCustomerSaved=function() {
WsCustomerSaved.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WsCustomerSaved.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WsCustomerSaved._staticInstance.get_path();},
getCustomerSaved:function(LanguageId,succeededCallback, failedCallback, userContext) {
/// <param name="LanguageId" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'getCustomerSaved',true,{LanguageId:LanguageId},succeededCallback,failedCallback,userContext); }}
WsCustomerSaved.registerClass('WsCustomerSaved',Sys.Net.WebServiceProxy);
WsCustomerSaved._staticInstance = new WsCustomerSaved();
WsCustomerSaved.set_path = function(value) {
WsCustomerSaved._staticInstance.set_path(value); }
WsCustomerSaved.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return WsCustomerSaved._staticInstance.get_path();}
WsCustomerSaved.set_timeout = function(value) {
WsCustomerSaved._staticInstance.set_timeout(value); }
WsCustomerSaved.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return WsCustomerSaved._staticInstance.get_timeout(); }
WsCustomerSaved.set_defaultUserContext = function(value) { 
WsCustomerSaved._staticInstance.set_defaultUserContext(value); }
WsCustomerSaved.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return WsCustomerSaved._staticInstance.get_defaultUserContext(); }
WsCustomerSaved.set_defaultSucceededCallback = function(value) { 
 WsCustomerSaved._staticInstance.set_defaultSucceededCallback(value); }
WsCustomerSaved.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return WsCustomerSaved._staticInstance.get_defaultSucceededCallback(); }
WsCustomerSaved.set_defaultFailedCallback = function(value) { 
WsCustomerSaved._staticInstance.set_defaultFailedCallback(value); }
WsCustomerSaved.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return WsCustomerSaved._staticInstance.get_defaultFailedCallback(); }
WsCustomerSaved.set_path("/webServices/WsCustomerSaved.asmx");
WsCustomerSaved.getCustomerSaved= function(LanguageId,onSuccess,onFailed,userContext) {
/// <param name="LanguageId" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
WsCustomerSaved._staticInstance.getCustomerSaved(LanguageId,onSuccess,onFailed,userContext); }
