public bool MatchesCustomerPreference(CustomerPreference preference)
 {
     return(_carPredicate.Invoke(preference.CarPreference) &&
            _langPredicate.Invoke(preference.LanguagePreference));
 }
 public bool MatchesCustomerPreference(CustomerPreference customerPreference)
 => _matcher.MatchesCustomerPreference(customerPreference);