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

