示例#1
0
 public Book(string title, string author, string content)
 {
     this.title = new Title(title);
     this.author = new Author(author);
     this.content = new Content(content);
 }
示例#2
0
 public Book(Author autor, Title title, Content content) // this is correct
 {
     this.content = content;
     this.autor   = autor;
     this.title   = title;
 }