/// Initializes a new instance of the <see cref="SearchBooksAfterYearCriteria"/> class.
 public SearchBooksAfterYearCriteria(int year)
 {
     BookValidator.CheckYear(year);
     this.year = year;
 }