private void btnAgregar_Afiliado_Click(object sender, EventArgs e)
        {
            FrmPLAN      FormPlanes = new FrmPLAN(new MODELO.PLAN(), "A");
            DialogResult dr         = FormPlanes.ShowDialog();

            if (dr == System.Windows.Forms.DialogResult.OK)
            {
                ARMA_GRILLA();
            }
        }
        private void btnConsultar_Afiliado_Click(object sender, EventArgs e)
        {
            if (dgvPLANES.CurrentRow == null)
            {
                MessageBox.Show("Debe seleccionar un plan");
                return;
            }
            FrmPLAN      FormPlanes = new FrmPLAN((MODELO.PLAN)dgvPLANES.CurrentRow.DataBoundItem, "C");
            DialogResult dr         = FormPlanes.ShowDialog();

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