public ActionResult Create() { ViewBag.BancaId = new SelectList(_bancaAppService.GetAll(), "BancaId", "Nome"); return(View()); }
public ActionResult Index() { return(View(_bancaAppService.GetAll())); }