示例#1
0
 public void ObtenerOfertas()
 {
     LogicaNegocio.LnOferta objLnOferta = new LnOferta();
     dtlOfertas.DataSource = objLnOferta.getOfertasProductos();
     dtlOfertas.DataBind();
 }
示例#2
0
 public void ObtenerProductosRelacionados()
 {
     LogicaNegocio.LnOferta objLnOferta = new LnOferta();
     dtlProRelacionados.DataSource = objLnOferta.getOfertasProductos();
     dtlProRelacionados.DataBind();
 }