Exemplo n.º 1
0
        public Dictionary <string, Tax> GetAllTaxes()
        {
            var sortedTaxes = taxRepository.GetAllTaxes().OrderBy(kv => kv.Key);

            return(sortedTaxes.ToDictionary(kv => kv.Key, kv => kv.Value));
        }