private void botonAceptar_Click(object sender, EventArgs e) { if (validaCampos()) { Ingrediente ingr = new Ingrediente(); ingr.Nombre = this.nombreBox.Text; ingr.UnidadMedida = this.unidadMedidaBox.Text; ingr.saveObj(); this.restaurarVentanaPrincipal(); this.Dispose(); } }