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