private async Task PopulateSelectAutores(int?autorId = null) { var autores = await _autorAppService.GetAllAsync(null); ViewBag.Autores = new SelectList( autores, nameof(AutorViewModel.Id), nameof(AutorViewModel.AutorNomeCompleto), autorId); //TODO: Exibir Nome + sobrenome + id }
// GET: Autor public async Task <IActionResult> Index() { return(View(await _autorAppService.GetAllAsync(null))); }