public void construirDetalleIntervenciones(List <List <string> > datosIntervenciones)
        {
            List <Dato> datos = new List <Dato>();
            string      descripcion;
            string      nombre;
            string      apellido;
            string      cantDotaciones;

            foreach (List <string> datoIntervencion in datosIntervenciones)
            {
                descripcion    = datoIntervencion[0];
                nombre         = datoIntervencion[1];
                apellido       = datoIntervencion[2];
                cantDotaciones = datoIntervencion[3];
                datos.Add(new Dato(descripcion, nombre, apellido, cantDotaciones));
            }


            reporte.setDetalleIntervenciones(datos);

            reporte.inicializarReporte();
        }