/**
  * @method Determine if this buyer entered a full ticket order for the current year.
  * @param forYear - The year that we wish to check.
  * @returns true if this buyer purchased the maximum number of tickets for the year and false otherwise.
  */
 public bool HadFullAdultTicketOrder(string forYear)
 {
     return(AdultTicketCount == _configuration.GetTicketCapForYear(forYear));
 }