Exemplo n.º 1
0
        public static void AddAuthor(Author author)
        {
            author.Id = AuthorList.Max(a => a.Id) + 1;
            AuthorList.Add(author);

            foreach (var book in author.Books)
            {
                AddBookForAuthor(author.Id, book);
            }
        }