// // GET: /Banco/ public ActionResult Index() { var bancoModel = Mapper.Map <IEnumerable <Banco>, IEnumerable <BancoModel> >(_bancoAppService.ListarTodos()); return(View(bancoModel)); }
// GET: Sucursal/Create public ActionResult Create() { ViewBag.Bancos = new SelectList(_bancoAppService.ListarTodos(), "Id", "Nombre"); return(View()); }