private void btnGuardar_Click(object sender, EventArgs e)
 {
     try
     {
         this.txtMensajeError.Visible = false;
         List <Error> Errores = this.ValidarDatos();
         if (Errores.Count == 0)
         {
             Checador         DatosAux = this.ObtenerDatos();
             Checador_Negocio CN       = new Checador_Negocio();
             CN.Checar(DatosAux);
             if (DatosAux.Completado)
             {
                 MessageBox.Show("Datos guardados correctamente.", Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Information);
                 this.DialogResult = DialogResult.OK;
             }
             else
             {
                 MessageBox.Show("Ocurrió un error al guardar los datos.", Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error);
             }
         }
         else
         {
             this.MostrarMensajeError(Errores);
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error);
         LogError.AddExcFileTxt(ex, "frmNuevoRegistroAsistencia ~ btnSalir_Click");
     }
 }
 public bool Checar(string IDEmpleado)
 {
     try
     {
         if (!string.IsNullOrEmpty(IDEmpleado))
         {
             Checador Registro = new Checador();
             Registro.FechaChecador  = this.FechaChecador;
             Registro.IDTipoRegistro = this.DatosTipoRegistro.IDTipoRegistro;
             Registro.IDEmpleado     = IDEmpleado;
             Registro.IDUsuario      = IDEmpleado;
             Registro.Motivo         = "Registro Automático";
             Registro.DispChecador   = true;
             Registro.Conexion       = Comun.Conexion;
             Checador_Negocio CN = new Checador_Negocio();
             CN.Checar(Registro);
             LogError.AddExcFileTxt(new Exception(Registro.ToString()), "frmChecarEntradaSalida ~ Checar");
             if (Registro.Completado)
             {
                 if (Registro.Opcion == 1)
                 {
                     return(true);
                 }
             }
             this.lblInstrucciones.Text = "Ocurrió un error. Intente nuevamente.";
             return(false);
         }
         else
         {
             this.lblInstrucciones.Text = "Checado Incorrecto";
             return(false);
         }
     }
     catch (Exception ex)
     {
         LogError.AddExcFileTxt(ex, "Checar(string IDEmpleado)");
         return(false);
         //this.Lector.Close();
     }
 }