Ejemplo n.º 1
0
 private void PopularViewBagCadastro()
 {
     ViewBag.NumeroPedido       = _pedidoAppService.ObterNumeroPedido();
     ViewBag.Vendedor           = new SelectList(_usuarioAppService.ObterTodos(), "UsuarioId", "Nome");
     ViewBag.Transportadora     = new SelectList(_transportadoraAppService.ObterTodos(), "TransportadoraId", "Nome");
     ViewBag.TipoPedidoCadastro = new SelectList(_tipoPedidoAppService.ObterTodos(), "TipoPedidoId", "Descricao");
 }
Ejemplo n.º 2
0
        public ActionResult Listar()
        {
            var json = _entitySerializationServices.Serialize(_transportadoraAppService.ObterTodos());

            return(Json(new { transportadora = json }, JsonRequestBehavior.AllowGet));
        }