protected void btnListar_Click(object sender, EventArgs e) { try { string Seleccion = ddlListadoMedicamento.SelectedValue; Farmaceutica oFar = LogicaFarmaceutica.BuscarXNombre(Seleccion); List <Medicamento> oLista = LogicaMedicamento.ListarMedicamentosXFarmaceutica(oFar); if (oLista != null) { gvListadoMedicamento.DataSource = oLista; gvListadoMedicamento.DataBind(); } else { lblError.Text = oFar.nombre + " aun no tiene medicamentos asociados."; } } catch (Exception ex) { lblError.Text = ex.Message; } }
protected void btnTodos_Click(object sender, EventArgs e) { try { string Seleccion = ddlListadoMedicamento.SelectedValue; Farmaceutica oFar = LogicaFarmaceutica.BuscarXNombre(Seleccion); gvListadoMedicamento.DataSource = LogicaMedicamento.ListarMedicamentosXFarmaceutica(oFar); gvListadoMedicamento.DataBind(); } catch (Exception ex) { lblError.Text = ex.Message; } }