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

