Exemple #1
0
 public Patent(string name)
     : base(name)
 {
     AuthorBehavior = new HasAuthors();
 }
Exemple #2
0
 public Book(string name)
     : base(name)
 {
     AuthorBehavior = new HasAuthors();
     YearBehavior   = new YearInfo();
 }