private async Task VerificarCadastroAutor(Livro livro) { Autor autor = await _autorServico.FindFirstAsync(x => x.Nome == livro.Autor.Nome); if (autor is null) { await _autorServico.AddAsync(livro.Autor); autor = await _autorServico.LastAsync(); } livro.AutorID = autor.ID; }