private void VentanaPrincipal_OnAbrirEstudios(object sender, EventArgs e) { EstudiosForm estudiosForm = new EstudiosForm(); EstudiosController estudiosController = new EstudiosController(estudiosForm); BaseDeDatos.mostrar = true; estudiosForm.Show(); }
public EstudiosController(EstudiosForm estudiosForm) { this.estudiosForm = estudiosForm; this.estudiosForm.OnRegresar += EstudiosForm_OnRegresar; }