private void btnNuevo_Click(object sender, EventArgs e)
        {
            frmPlanDePruebaABM ofrmPlanDePruebaABM = new frmPlanDePruebaABM();

            ofrmPlanDePruebaABM.Op = 1;
            ofrmPlanDePruebaABM.ShowDialog();
            btnConsultar_Click(sender, e);
        }
        private void btnNuevoPlan_Click(object sender, EventArgs e)
        {
            frmPlanDePruebaABM ofrmPlanDePruebaABM = new frmPlanDePruebaABM();

            ofrmPlanDePruebaABM.Op = 1;
            ofrmPlanDePruebaABM.ShowDialog();
            LlenarCombo(cboNombrePlan, oPlanDePruebaServicio.ObtenerTodos(), "Nombre", "Id_plan_prueba");
        }
        private void btnEliminar_Click(object sender, EventArgs e)
        {
            frmPlanDePruebaABM ofrmPlanDePruebaABM = new frmPlanDePruebaABM((int)grdPlanDePrueba.CurrentRow.Cells[0].Value);

            ofrmPlanDePruebaABM.Op = 3;
            ofrmPlanDePruebaABM.ShowDialog();
            btnConsultar_Click(sender, e);
        }