public ChangeCalculator(string currency)
 {
     if (currency == null)
     {
         throw new ArgumentNullException(nameof(currency));
     }
     _banknotes = CurrencyRepository.GetAllBanknotesDescendingFor(currency);
 }