var CustomersComplete=function() {
CustomersComplete.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CustomersComplete.prototype={
AutoSuggest:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(CustomersComplete.get_path(), 'AutoSuggest',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
AutoSuggestar:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(CustomersComplete.get_path(), 'AutoSuggestar',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
CustomersComplete.registerClass('CustomersComplete',Sys.Net.WebServiceProxy);
CustomersComplete._staticInstance = new CustomersComplete();
CustomersComplete.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; CustomersComplete._staticInstance._path = value; }
CustomersComplete.get_path = function() { return CustomersComplete._staticInstance._path; }
CustomersComplete.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); }
CustomersComplete._staticInstance._timeout = value; }
CustomersComplete.get_timeout = function() { 
return CustomersComplete._staticInstance._timeout; }
CustomersComplete.set_defaultUserContext = function(value) { 
CustomersComplete._staticInstance._userContext = value; }
CustomersComplete.get_defaultUserContext = function() { 
return CustomersComplete._staticInstance._userContext; }
CustomersComplete.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; CustomersComplete._staticInstance._succeeded = value; }
CustomersComplete.get_defaultSucceededCallback = function() { 
return CustomersComplete._staticInstance._succeeded; }
CustomersComplete.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; CustomersComplete._staticInstance._failed = value; }
CustomersComplete.get_defaultFailedCallback = function() { 
return CustomersComplete._staticInstance._failed; }
CustomersComplete.set_path("/CustomersComplete.asmx");
CustomersComplete.AutoSuggest= function(prefixText,count,onSuccess,onFailed,userContext) {CustomersComplete._staticInstance.AutoSuggest(prefixText,count,onSuccess,onFailed,userContext); }
CustomersComplete.AutoSuggestar= function(prefixText,count,onSuccess,onFailed,userContext) {CustomersComplete._staticInstance.AutoSuggestar(prefixText,count,onSuccess,onFailed,userContext); }

