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