public void BuscaVeiculos(int pedido) { daoVourcher bv = new daoVourcher(); DataTable dtProdutos = new DataTable(); bv._idPedido = pedido; dtProdutos = bv.getVeiculos(); slcprodutos.DataSource = dtProdutos; slcprodutos.DataBind(); slcprodutos.Items.Insert(0, "SELECIONE"); }
public static string Veiculos(int id_pedido) { //string retorno = ""; string myJsonString; DataTable dt = new DataTable(); daoVourcher bv = new daoVourcher(); VendaVourcher venda = new VendaVourcher(); bv._idPedido = id_pedido; var ret = venda.RetornaProdutos(bv.getVeiculos()); myJsonString = (new JavaScriptSerializer()).Serialize(ret); return(myJsonString); }