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

