protected void ddlSolucaoEducacional_OnSelectedIndexChanged(object sender, EventArgs e) { if (ddlSolucaoEducacional.SelectedIndex > 0) { var ofertas = bmOferta.ObterPorFiltro(string.Empty, string.Empty, int.Parse(ddlSolucaoEducacional.SelectedValue)); WebFormHelper.PreencherLista(ofertas, ddlOferta, false, true); } }
public IList <Oferta> ObterOfertaPorFiltro(string nome, string idChaveExterna, int idSolucaoEducacional) { return(bmOferta.ObterPorFiltro(nome, idChaveExterna, idSolucaoEducacional)); }