コード例 #1
0
ファイル: Book.cs プロジェクト: MadNomad/solutions
 public Book(string title, string author, string content)
 {
     this.title = new Title(title);
     this.author = new Author(author);
     this.content = new Content(content);
 }