var wsEvento=function() {
wsEvento.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
wsEvento.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return wsEvento._staticInstance.get_path();},
retornaEvento:function(idEvento,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'retornaEvento',false,{idEvento:idEvento},succeededCallback,failedCallback,userContext); }}
wsEvento.registerClass('wsEvento',Sys.Net.WebServiceProxy);
wsEvento._staticInstance = new wsEvento();
wsEvento.set_path = function(value) { wsEvento._staticInstance.set_path(value); }
wsEvento.get_path = function() { return wsEvento._staticInstance.get_path(); }
wsEvento.set_timeout = function(value) { wsEvento._staticInstance.set_timeout(value); }
wsEvento.get_timeout = function() { return wsEvento._staticInstance.get_timeout(); }
wsEvento.set_defaultUserContext = function(value) { wsEvento._staticInstance.set_defaultUserContext(value); }
wsEvento.get_defaultUserContext = function() { return wsEvento._staticInstance.get_defaultUserContext(); }
wsEvento.set_defaultSucceededCallback = function(value) { wsEvento._staticInstance.set_defaultSucceededCallback(value); }
wsEvento.get_defaultSucceededCallback = function() { return wsEvento._staticInstance.get_defaultSucceededCallback(); }
wsEvento.set_defaultFailedCallback = function(value) { wsEvento._staticInstance.set_defaultFailedCallback(value); }
wsEvento.get_defaultFailedCallback = function() { return wsEvento._staticInstance.get_defaultFailedCallback(); }
wsEvento.set_path("/wsEvento.asmx");
wsEvento.retornaEvento= function(idEvento,onSuccess,onFailed,userContext) {wsEvento._staticInstance.retornaEvento(idEvento,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Evento) === 'undefined') {
var Evento=gtc("Evento");
Evento.registerClass('Evento');
}
