public void Reporte2()
 {
     try
     {
         Reportes.Html html = new Reportes.Html();
         html.ReporteEtoken(ListaB);
         Process.Start(@"C:\Users\libni\OneDrive\Escritorio\ReporteError.html");
     }
     catch (Exception)
     {
         MessageBox.Show("No se pudo abrir el reporte de errores o no hay errores", "Información", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
 public void Reporte1()
 {
     try
     {
         MessageBox.Show("Espere en un momento se abrira el reporte de token´s", "Información", MessageBoxButtons.OK, MessageBoxIcon.Information);
         Reportes.Html item = new Reportes.Html();
         item.ReporteToken(ListaA);
         EnviarDatos();
         Process.Start(@"C:\Users\libni\OneDrive\Escritorio\ReporteToken.html");
     }
     catch (Exception)
     {
         MessageBox.Show("No se pudo abrir el reporte de Token´s", "Información", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }