Beispiel #1
0
        private void VentanaPrincipal_OnAbrirActores(object sender, EventArgs e)
        {
            ActoresForm       actoresForm       = new ActoresForm();
            ActoresController actoresController = new ActoresController(actoresForm);

            BaseDeDatos.mostrar = true;
            actoresForm.Show();
        }
 public ActoresController(ActoresForm actoresForm)
 {
     this.actoresForm             = actoresForm;
     this.actoresForm.OnRegresar += ActoresForm_OnRegresar;
 }