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