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

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

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