예제 #1
0
        public IDictionary <string, decimal> GetTaxRates()
        {
            var taxRateList = _taxRepository.List();

            return(taxRateList.ToDictionary(item => item.CountrySubDivisionCode.ToUpper(), item => item.Tax));
        }