var InterviewUpService=function() {
InterviewUpService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
InterviewUpService.prototype={
UpdateUserQuestion:function(questionId,userId,succeededCallback, failedCallback, userContext) {
return this._invoke(InterviewUpService.get_path(), 'UpdateUserQuestion',false,{questionId:questionId,userId:userId},succeededCallback,failedCallback,userContext); },
GetAutoTags:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(InterviewUpService.get_path(), 'GetAutoTags',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetAutoCompanies:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(InterviewUpService.get_path(), 'GetAutoCompanies',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetAutoJobPositions:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(InterviewUpService.get_path(), 'GetAutoJobPositions',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
PopulateFilters:function(searchString,unanswered,userId,srchIs,fieldIndex,sessionID,succeededCallback, failedCallback, userContext) {
return this._invoke(InterviewUpService.get_path(), 'PopulateFilters',false,{searchString:searchString,unanswered:unanswered,userId:userId,srchIs:srchIs,fieldIndex:fieldIndex,sessionID:sessionID},succeededCallback,failedCallback,userContext); }}
InterviewUpService.registerClass('InterviewUpService',Sys.Net.WebServiceProxy);
InterviewUpService._staticInstance = new InterviewUpService();
InterviewUpService.set_path = function(value) { InterviewUpService._staticInstance._path = value; }
InterviewUpService.get_path = function() { return InterviewUpService._staticInstance._path; }
InterviewUpService.set_timeout = function(value) { InterviewUpService._staticInstance._timeout = value; }
InterviewUpService.get_timeout = function() { return InterviewUpService._staticInstance._timeout; }
InterviewUpService.set_defaultUserContext = function(value) { InterviewUpService._staticInstance._userContext = value; }
InterviewUpService.get_defaultUserContext = function() { return InterviewUpService._staticInstance._userContext; }
InterviewUpService.set_defaultSucceededCallback = function(value) { InterviewUpService._staticInstance._succeeded = value; }
InterviewUpService.get_defaultSucceededCallback = function() { return InterviewUpService._staticInstance._succeeded; }
InterviewUpService.set_defaultFailedCallback = function(value) { InterviewUpService._staticInstance._failed = value; }
InterviewUpService.get_defaultFailedCallback = function() { return InterviewUpService._staticInstance._failed; }
InterviewUpService.set_path("/WebService/InterviewUpService.asmx");
InterviewUpService.UpdateUserQuestion= function(questionId,userId,onSuccess,onFailed,userContext) {InterviewUpService._staticInstance.UpdateUserQuestion(questionId,userId,onSuccess,onFailed,userContext); }
InterviewUpService.GetAutoTags= function(prefixText,count,onSuccess,onFailed,userContext) {InterviewUpService._staticInstance.GetAutoTags(prefixText,count,onSuccess,onFailed,userContext); }
InterviewUpService.GetAutoCompanies= function(prefixText,count,onSuccess,onFailed,userContext) {InterviewUpService._staticInstance.GetAutoCompanies(prefixText,count,onSuccess,onFailed,userContext); }
InterviewUpService.GetAutoJobPositions= function(prefixText,count,onSuccess,onFailed,userContext) {InterviewUpService._staticInstance.GetAutoJobPositions(prefixText,count,onSuccess,onFailed,userContext); }
InterviewUpService.PopulateFilters= function(searchString,unanswered,userId,srchIs,fieldIndex,sessionID,onSuccess,onFailed,userContext) {InterviewUpService._staticInstance.PopulateFilters(searchString,unanswered,userId,srchIs,fieldIndex,sessionID,onSuccess,onFailed,userContext); }
