예제 #1
0
 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);
     }
 }
예제 #2
0
 public IList <Oferta> ObterOfertaPorFiltro(string nome, string idChaveExterna, int idSolucaoEducacional)
 {
     return(bmOferta.ObterPorFiltro(nome, idChaveExterna, idSolucaoEducacional));
 }