private void btnGetFilter_Click(object sender, EventArgs e) { try { //--- string desc = txtDescripcionGetFilter.Text; var product2 = _RESTProductService.GetByUrlParameter("?descripcion=" + desc + "&id=0"); this.lblCantidadGet.Text = product2?.Count().ToString(); this.SetEstado("Se obtuvo el producto correctamente"); } catch (NotResourceFoundException) { this.SetEstado("No existe el produto con id: " + txtIdProductGet.Text); } catch (InternalErrorException) { this.SetEstado("Error al obtener el producto"); } }
private void BtnGet_Click(object sender, EventArgs e) { IList <SoporteAdmedia> data = _RESTSoporteAdmediaService.GetByUrlParameter(""); UgSoporteAdmedia.DataSource = data; }