Type.registerNamespace('Job.Web');
Job.Web.PartialUpdates=function() {
Job.Web.PartialUpdates.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Job.Web.PartialUpdates.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Job.Web.PartialUpdates._staticInstance.get_path();},
GetCompanyList:function(lang,pageIndex,target,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCompanyList',false,{lang:lang,pageIndex:pageIndex,target:target},succeededCallback,failedCallback,userContext); },
GetExpertList:function(lang,pageIndex,target,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetExpertList',false,{lang:lang,pageIndex:pageIndex,target:target},succeededCallback,failedCallback,userContext); },
GetJobList:function(lang,categoryId,pageIndex,displayCompanyName,target,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetJobList',false,{lang:lang,categoryId:categoryId,pageIndex:pageIndex,displayCompanyName:displayCompanyName,target:target},succeededCallback,failedCallback,userContext); }}
Job.Web.PartialUpdates.registerClass('Job.Web.PartialUpdates',Sys.Net.WebServiceProxy);
Job.Web.PartialUpdates._staticInstance = new Job.Web.PartialUpdates();
Job.Web.PartialUpdates.set_path = function(value) { Job.Web.PartialUpdates._staticInstance.set_path(value); }
Job.Web.PartialUpdates.get_path = function() { return Job.Web.PartialUpdates._staticInstance.get_path(); }
Job.Web.PartialUpdates.set_timeout = function(value) { Job.Web.PartialUpdates._staticInstance.set_timeout(value); }
Job.Web.PartialUpdates.get_timeout = function() { return Job.Web.PartialUpdates._staticInstance.get_timeout(); }
Job.Web.PartialUpdates.set_defaultUserContext = function(value) { Job.Web.PartialUpdates._staticInstance.set_defaultUserContext(value); }
Job.Web.PartialUpdates.get_defaultUserContext = function() { return Job.Web.PartialUpdates._staticInstance.get_defaultUserContext(); }
Job.Web.PartialUpdates.set_defaultSucceededCallback = function(value) { Job.Web.PartialUpdates._staticInstance.set_defaultSucceededCallback(value); }
Job.Web.PartialUpdates.get_defaultSucceededCallback = function() { return Job.Web.PartialUpdates._staticInstance.get_defaultSucceededCallback(); }
Job.Web.PartialUpdates.set_defaultFailedCallback = function(value) { Job.Web.PartialUpdates._staticInstance.set_defaultFailedCallback(value); }
Job.Web.PartialUpdates.get_defaultFailedCallback = function() { return Job.Web.PartialUpdates._staticInstance.get_defaultFailedCallback(); }
Job.Web.PartialUpdates.set_path("/PartialUpdates.asmx");
Job.Web.PartialUpdates.GetCompanyList= function(lang,pageIndex,target,onSuccess,onFailed,userContext) {Job.Web.PartialUpdates._staticInstance.GetCompanyList(lang,pageIndex,target,onSuccess,onFailed,userContext); }
Job.Web.PartialUpdates.GetExpertList= function(lang,pageIndex,target,onSuccess,onFailed,userContext) {Job.Web.PartialUpdates._staticInstance.GetExpertList(lang,pageIndex,target,onSuccess,onFailed,userContext); }
Job.Web.PartialUpdates.GetJobList= function(lang,categoryId,pageIndex,displayCompanyName,target,onSuccess,onFailed,userContext) {Job.Web.PartialUpdates._staticInstance.GetJobList(lang,categoryId,pageIndex,displayCompanyName,target,onSuccess,onFailed,userContext); }
