public Boolean verificarNombreDeporte(String pNombreDeporte) { try { cSGGIDEPORTENegocios DeporteNuevo = new cSGGIDEPORTENegocios(Global.gCOD_APLICACION, "CA", 2, "cosejo"); DeporteNuevo.NOM_DEPORTE = pNombreDeporte; DataTable busqueda = DeporteNuevo.Buscar(); if (busqueda.Rows.Count > 0) { IdDeporte = Int32.Parse(busqueda.Rows[0][0].ToString()); return true; } else { IdDeporte = -1; return false; } } catch (Exception ex) { return false; } }
private void obtenerDeportes() { try { cSGGIDEPORTENegocios Deporte = new cSGGIDEPORTENegocios(Global.gCOD_APLICACION, "CA", 2, "cosejo"); DT_Deportes = new DataTable(); DT_Deportes = Deporte.SeleccionarTodos(); llenarComboBoxDeportes(); } catch (Exception ex) { Page.ClientScript.RegisterStartupScript(this.GetType(), "alerta2", "<script type=\"text/javascript\"> alert(" + "'" + ex.Message + "'" + ");</script>"); } }
private Boolean agregarDeporte() { try { cSGGIDEPORTENegocios DeporteNuevo = new cSGGIDEPORTENegocios(Global.gCOD_APLICACION, "CA", 2, "cosejo"); DeporteNuevo.NOM_DEPORTE = TextBoxDeporteNuevo.Text; if (!verificarNombreDeporte(TextBoxDeporteNuevo.Text)) { return DeporteNuevo.Insertar(); } throw new Exception("El Nombre digitado ya se encuentra dentro del sistema"); } catch (Exception ex) { throw ex; } }