var reviewWS=function() {
reviewWS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
reviewWS.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return reviewWS._staticInstance.get_path();},
HasBadWords:function(comment,succeededCallback, failedCallback, userContext) {
/// <param name="comment" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'HasBadWords',false,{comment:comment},succeededCallback,failedCallback,userContext); },
ValidateRecaptcha:function(challengeValue,responseValue,succeededCallback, failedCallback, userContext) {
/// <param name="challengeValue" type="String">System.String</param>
/// <param name="responseValue" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'ValidateRecaptcha',false,{challengeValue:challengeValue,responseValue:responseValue},succeededCallback,failedCallback,userContext); },
getEmployeeInfo:function(employeeID,succeededCallback, failedCallback, userContext) {
/// <param name="employeeID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'getEmployeeInfo',false,{employeeID:employeeID},succeededCallback,failedCallback,userContext); }}
reviewWS.registerClass('reviewWS',Sys.Net.WebServiceProxy);
reviewWS._staticInstance = new reviewWS();
reviewWS.set_path = function(value) {
reviewWS._staticInstance.set_path(value); }
reviewWS.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return reviewWS._staticInstance.get_path();}
reviewWS.set_timeout = function(value) {
reviewWS._staticInstance.set_timeout(value); }
reviewWS.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return reviewWS._staticInstance.get_timeout(); }
reviewWS.set_defaultUserContext = function(value) { 
reviewWS._staticInstance.set_defaultUserContext(value); }
reviewWS.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return reviewWS._staticInstance.get_defaultUserContext(); }
reviewWS.set_defaultSucceededCallback = function(value) { 
 reviewWS._staticInstance.set_defaultSucceededCallback(value); }
reviewWS.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return reviewWS._staticInstance.get_defaultSucceededCallback(); }
reviewWS.set_defaultFailedCallback = function(value) { 
reviewWS._staticInstance.set_defaultFailedCallback(value); }
reviewWS.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return reviewWS._staticInstance.get_defaultFailedCallback(); }
reviewWS.set_path("/reviewWS.asmx");
reviewWS.HasBadWords= function(comment,onSuccess,onFailed,userContext) {
/// <param name="comment" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
reviewWS._staticInstance.HasBadWords(comment,onSuccess,onFailed,userContext); }
reviewWS.ValidateRecaptcha= function(challengeValue,responseValue,onSuccess,onFailed,userContext) {
/// <param name="challengeValue" type="String">System.String</param>
/// <param name="responseValue" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
reviewWS._staticInstance.ValidateRecaptcha(challengeValue,responseValue,onSuccess,onFailed,userContext); }
reviewWS.getEmployeeInfo= function(employeeID,onSuccess,onFailed,userContext) {
/// <param name="employeeID" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
reviewWS._staticInstance.getEmployeeInfo(employeeID,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(BadWordResponse) === 'undefined') {
var BadWordResponse=gtc("BadWordResponse");
BadWordResponse.registerClass('BadWordResponse');
}
if (typeof(Employee) === 'undefined') {
var Employee=gtc("Employee");
Employee.registerClass('Employee');
}
