private void btnRegistrar_Click(object sender, EventArgs e) { try { if (!ValidarComponentes()) return; if (MessageBox.Show(MensajePregunta, this.Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) { return; } OperacionBC objOperacionBC = new OperacionBC(); Operacion objOperacion = new Operacion(); objOperacion.Codigo = txtCodigo.Text.ToUpper(); objOperacion.Descripcion = txtDescripcion.Text.ToUpper(); objOperacion.Estado = 1; if (Modo == TypeMode.Registrar) { objOperacionBC.RegistrarOperacion(objOperacion); MessageBox.Show(MensajeRespuesta, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information); } else if (Modo == TypeMode.Editar) { objOperacion.OperacionId = OperacionId; objOperacionBC.EditarOperacion(objOperacion); MessageBox.Show(MensajeRespuesta, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information); } MiDelegado(); this.Dispose(); } catch (Exception) { MessageBox.Show("Disculpe, el sistema se encuentra fuera de servicio!", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error); } }