public Patent(string name) : base(name) { AuthorBehavior = new HasAuthors(); }
public Book(string name) : base(name) { AuthorBehavior = new HasAuthors(); YearBehavior = new YearInfo(); }