public IActionResult Index() { var autores = autoresRep.Listar(); var model = new List <AutorVM>(); autores.ForEach(x => model.Add(new AutorVM { AutorId = x.AutorId, Nome = x.Nome })); return(View(model)); }
public IActionResult Index() { return(View(autoresRep.Listar())); }