public Response <Movimiento> GenerarNotaCredito([FromBody] Movimiento arg)
        {
            Response <Movimiento> obj       = new Response <Movimiento>();
            GestionNotaCredito    registrar = new GestionNotaCredito();

            return(obj = registrar.GenerarNotaDeCredito(arg));
        }
        public Response <List <Movimiento> > ListarCargosNota([FromBody] Participante arg)
        {
            Response <List <Movimiento> > obj   = new Response <List <Movimiento> >();
            GestionNotaCredito            lista = new GestionNotaCredito();

            return(obj = lista.ListarCargosNota(arg));
        }
        public Response <List <Participante> > ListarParticipantesNota([FromBody] decimal arg)
        {
            Response <List <Participante> > obj = new Response <List <Participante> >();
            GestionNotaCredito lista            = new GestionNotaCredito();

            return(obj = lista.ListaParticipantes(arg));
        }
        public Response <SaldoEvento> SaldoEventoNota([FromBody] Participante arg)
        {
            Response <SaldoEvento> obj   = new Response <SaldoEvento>();
            GestionNotaCredito     Saldo = new GestionNotaCredito();

            return(obj = Saldo.SaldoEventoNota(arg));
        }
        public Response <List <Evento> > ListarEventosNota()
        {
            Response <List <Evento> > obj   = new Response <List <Evento> >();
            GestionNotaCredito        lista = new GestionNotaCredito();

            return(obj = lista.ListaEventoActivos());
        }