Esempio n. 1
0
 private void PopularViewBag(Produto produto = null)
 {
     if (produto == null)
     {
         ViewBag.CategoriaId  = new SelectList(_categoriaServico.ObterCategoriasOrdenadasPorNome(), "CategoriaId", "Nome");
         ViewBag.FabricanteId = new SelectList(_fabricanteServico.ObterFabricantesOrdenadosPorNome(), "FabricanteId", "Nome");
     }
     else
     {
         ViewBag.CategoriaId  = new SelectList(_categoriaServico.ObterCategoriasOrdenadasPorNome(), "CategoriaId", "Nome", produto.CategoriaID);
         ViewBag.FabricanteId = new SelectList(_fabricanteServico.ObterFabricantesOrdenadosPorNome(), "FabricanteId", "Nome", produto.FabricanteID);
     }
 }
Esempio n. 2
0
 // GET: Categorias
 public ActionResult Index()
 {
     return(View(_categoriaServico.ObterCategoriasOrdenadasPorNome()));
 }