var PersonService=function() {
PersonService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PersonService.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(PersonService.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
GetNodes:function(id,n,succeededCallback, failedCallback, userContext) {
return this._invoke(PersonService.get_path(), 'GetNodes',false,{id:id,n:n},succeededCallback,failedCallback,userContext); },
deletExperience:function(id,succeededCallback, failedCallback, userContext) {
return this._invoke(PersonService.get_path(), 'deletExperience',false,{id:id},succeededCallback,failedCallback,userContext); },
CheckPersonal:function(UserNm,UserPwd,n,succeededCallback, failedCallback, userContext) {
return this._invoke(PersonService.get_path(), 'CheckPersonal',false,{UserNm:UserNm,UserPwd:UserPwd,n:n},succeededCallback,failedCallback,userContext); },
GetName:function(ID,type,succeededCallback, failedCallback, userContext) {
return this._invoke(PersonService.get_path(), 'GetName',false,{ID:ID,type:type},succeededCallback,failedCallback,userContext); }}
PersonService.registerClass('PersonService',Sys.Net.WebServiceProxy);
PersonService._staticInstance = new PersonService();
PersonService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; PersonService._staticInstance._path = value; }
PersonService.get_path = function() { return PersonService._staticInstance._path; }
PersonService.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); }
PersonService._staticInstance._timeout = value; }
PersonService.get_timeout = function() { 
return PersonService._staticInstance._timeout; }
PersonService.set_defaultUserContext = function(value) { 
PersonService._staticInstance._userContext = value; }
PersonService.get_defaultUserContext = function() { 
return PersonService._staticInstance._userContext; }
PersonService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; PersonService._staticInstance._succeeded = value; }
PersonService.get_defaultSucceededCallback = function() { 
return PersonService._staticInstance._succeeded; }
PersonService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; PersonService._staticInstance._failed = value; }
PersonService.get_defaultFailedCallback = function() { 
return PersonService._staticInstance._failed; }
PersonService.set_path("/Services/PersonService.asmx");
PersonService.HelloWorld= function(onSuccess,onFailed,userContext) {PersonService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
PersonService.GetNodes= function(id,n,onSuccess,onFailed,userContext) {PersonService._staticInstance.GetNodes(id,n,onSuccess,onFailed,userContext); }
PersonService.deletExperience= function(id,onSuccess,onFailed,userContext) {PersonService._staticInstance.deletExperience(id,onSuccess,onFailed,userContext); }
PersonService.CheckPersonal= function(UserNm,UserPwd,n,onSuccess,onFailed,userContext) {PersonService._staticInstance.CheckPersonal(UserNm,UserPwd,n,onSuccess,onFailed,userContext); }
PersonService.GetName= function(ID,type,onSuccess,onFailed,userContext) {PersonService._staticInstance.GetName(ID,type,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('System.Data');
if (typeof(System.Data.DataTable) === 'undefined') {
System.Data.DataTable=gtc("System.Data.DataTable");
System.Data.DataTable.registerClass('System.Data.DataTable');
}
