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