Пример #1
0
 void InitializeBook()
 {
     title   = new Title();
     author  = new Author();
     content = new Content();
 }
Пример #2
0
 public Book(string title, string author, string content)
 {
     this.title   = new Title(title);
     this.author  = new Author(author);
     this.content = new Content(content);
 }