private void dgvIdentificador_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            try
            {
                if (e.RowIndex >= 0)
                {
                    if (Boolean.Parse(dgvIdentificador.Rows[e.RowIndex].Cells["Activo"].Value.ToString()) == true)
                    {
                        OHelper.ActualizarEstadoIdIdentificador(Int32.Parse(dgvIdentificador.Rows[e.RowIndex].Cells["IdIdentificador"].Value.ToString()), false);
                    }
                    else
                    {
                        OHelper.ActualizarEstadoIdIdentificador(Int32.Parse(dgvIdentificador.Rows[e.RowIndex].Cells["IdIdentificador"].Value.ToString()), true);
                    }


                    dgvIdentificador.DataSource = OHelper.RecuperarIdentificadoresEmpleado(Int32.Parse(lblIdEmpleado.Text));
                }
            }
            catch (Exception ex)
            {
                Popup.ContentText = ex.Message;
                Popup.Popup();
            }
        }