public Livro(int id, string titulo, string isbn, short numeroPaginas, Genero genero, Editora editora, Autor autor) { this.Id = id; this.Titulo = titulo; this.Isbn = isbn; this.NumeroPaginas = numeroPaginas; this.Genero = genero; this.Editora = editora; this.Autor = autor; }