var EmployerNameAutoComplete=function() {
EmployerNameAutoComplete.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
EmployerNameAutoComplete.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return EmployerNameAutoComplete._staticInstance.get_path();},
GetEmployerNames:function(prefixText,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetEmployerNames',false,{prefixText:prefixText},succeededCallback,failedCallback,userContext); }}
EmployerNameAutoComplete.registerClass('EmployerNameAutoComplete',Sys.Net.WebServiceProxy);
EmployerNameAutoComplete._staticInstance = new EmployerNameAutoComplete();
EmployerNameAutoComplete.set_path = function(value) { EmployerNameAutoComplete._staticInstance.set_path(value); }
EmployerNameAutoComplete.get_path = function() { return EmployerNameAutoComplete._staticInstance.get_path(); }
EmployerNameAutoComplete.set_timeout = function(value) { EmployerNameAutoComplete._staticInstance.set_timeout(value); }
EmployerNameAutoComplete.get_timeout = function() { return EmployerNameAutoComplete._staticInstance.get_timeout(); }
EmployerNameAutoComplete.set_defaultUserContext = function(value) { EmployerNameAutoComplete._staticInstance.set_defaultUserContext(value); }
EmployerNameAutoComplete.get_defaultUserContext = function() { return EmployerNameAutoComplete._staticInstance.get_defaultUserContext(); }
EmployerNameAutoComplete.set_defaultSucceededCallback = function(value) { EmployerNameAutoComplete._staticInstance.set_defaultSucceededCallback(value); }
EmployerNameAutoComplete.get_defaultSucceededCallback = function() { return EmployerNameAutoComplete._staticInstance.get_defaultSucceededCallback(); }
EmployerNameAutoComplete.set_defaultFailedCallback = function(value) { EmployerNameAutoComplete._staticInstance.set_defaultFailedCallback(value); }
EmployerNameAutoComplete.get_defaultFailedCallback = function() { return EmployerNameAutoComplete._staticInstance.get_defaultFailedCallback(); }
EmployerNameAutoComplete.set_path("/EmployerNameAutoComplete.asmx");
EmployerNameAutoComplete.GetEmployerNames= function(prefixText,onSuccess,onFailed,userContext) {EmployerNameAutoComplete._staticInstance.GetEmployerNames(prefixText,onSuccess,onFailed,userContext); }
