private void btnAgregar_Afiliado_Click(object sender, EventArgs e)
        {
            frmAFILIADOS FormAfiliado = new frmAFILIADOS(new MODELO.AFILIADO(), "A");
            DialogResult dr           = FormAfiliado.ShowDialog();

            if (dr == System.Windows.Forms.DialogResult.OK)
            {
                ARMA_GRILLA();
            }
        }
        private void btnModificar_Afiliado_Click(object sender, EventArgs e)
        {
            if (dgvAFILIADOS.CurrentRow == null)
            {
                MessageBox.Show("Debe seleccionar a una afiliado");
                return;
            }
            frmAFILIADOS FormAfiliado = new frmAFILIADOS((MODELO.AFILIADO)dgvAFILIADOS.CurrentRow.DataBoundItem, "M");
            DialogResult dr           = FormAfiliado.ShowDialog();

            if (dr == System.Windows.Forms.DialogResult.OK)
            {
                ARMA_GRILLA();
            }
        }