private void btnAceptar_Click(object sender, EventArgs e) { int respuesta; try { if (this.ValidarTextbox()) { Ejercicio ej = new Ejercicio(); ej.Nombre = txtNombre.Text.Trim(); ej.Descripcion = txtDescripcion.Text.Trim(); ej.Cantidad = txtCantidad.Text.Trim(); ej.Repeticiones = txtRepeticiones.Text.Trim(); ej.PalabrasClave = txtPalabrasClave.Text.Trim(); if (string.IsNullOrWhiteSpace(lblID.Text)) { respuesta = GestionarEjercicio.Insertar(ej); } else { ej.Id = int.Parse(lblID.Text); respuesta = GestionarEjercicio.Modificar(ej); } if (respuesta == 0) { Mensaje("msgErrorAlta", "msgError"); } else { Mensaje("msgOperacionOk"); } if (this.Owner == null) { nuevo(); } else { this.Close(); } } else { this.DialogResult = DialogResult.None; } } catch (Exception ex) { GestionarError.loguear(ex.ToString()); Mensaje("errorDatoMal", "msgFaltaCompletarTitulo"); } }
private void btnAceptar_Click(object sender, EventArgs e) { int respuesta; try { if (this.Validar()) { EntrenamientoSeleccionado.Nombre = txtNombreE.Text.Trim(); EntrenamientoSeleccionado.Descripcion = txtDescripcionE.Text.Trim(); EntrenamientoSeleccionado.PalabrasClave = txtPalabrasClave.Text; if (string.IsNullOrWhiteSpace(lblID.Text) || "0".Equals(lblID.Text)) { respuesta = gestor.Insertar(EntrenamientoSeleccionado); } else { EntrenamientoSeleccionado.Id = int.Parse(lblID.Text); respuesta = gestor.Modificar(EntrenamientoSeleccionado); } if (respuesta == 0) { Mensaje("msgErrorAlta", "msgError"); } else { Mensaje("msgOperacionOk"); } if (this.Owner == null) { nuevo(); } else { this.Close(); } } else { Mensaje("errorDatoMal", "msgFaltaCompletarTitulo"); this.DialogResult = DialogResult.None; } } catch (Exception ex) { GestionarError.loguear(ex.ToString()); Mensaje("errorDatoMal", "msgFaltaCompletarTitulo"); } }
private void btnAceptar_Click(object sender, EventArgs e) { int respuesta; if (Seleccionado == null) { Seleccionado = new Paciente(); } try { if (this.ValidarTextbox()) { Seleccionado.Dni = int.Parse(txtDni.Text.Trim()); Seleccionado.Nombre = txtNombre.Text.Trim(); Seleccionado.Apellido = txtApellido.Text.Trim(); Seleccionado.FechaNacimiento = dtFecha.Value; Paciente existe = GestionarPaciente.Buscar(Seleccionado); if (existe == null) { respuesta = gestor.Insertar(Seleccionado); } else { respuesta = gestor.Modificar(Seleccionado); } if (respuesta == 0) { Mensaje("msgErrorAlta", "msgError"); } else { Mensaje("msgOperacionOk"); this.Close(); } } else { this.DialogResult = DialogResult.None; } } catch (Exception ex) { GestionarError.loguear(ex.ToString()); Mensaje("errorDatoMal", "msgFaltaCompletarTitulo"); } }