public Book(string title, string author, string content) { this.title = new Title(title); this.author = new Author(author); this.content = new Content(content); }