public IDictionary <string, decimal> GetTaxRates() { var taxRateList = _taxRepository.List(); return(taxRateList.ToDictionary(item => item.CountrySubDivisionCode.ToUpper(), item => item.Tax)); }