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