Example #1
0
 // GET: Etapa
 public ActionResult Index()
 {
     return(View(etapaBLL.Todas()));
 }
Example #2
0
 // GET: Entrega/Create
 public ActionResult Create()
 {
     ViewBag.IdEtapa   = new SelectList(etapaBLL.Todas(), "IdEtapa", "IdEtapa");
     ViewBag.IdProjeto = new SelectList(projetoBLL.Todos(), "IdProjeto", "NomeProjeto");
     return(View());
 }