//Constructor public Book(string title, Author author, Language language, BookSection bookSection) : base(title) { this.BookAuthor = author; this.BookLanguage = language; this.bookSection = bookSection; }