Beispiel #1
0
        private Dictionary <string, double> UpdateMap()
        {
            Dictionary <string, double> values    = new Dictionary <string, double>();
            IList <Country>             countries = converter.FindCountriesFor(this.SelectedCurrency);

            if (countries != null && countries.Count > 0)
            {
                foreach (Country country in countries)
                {
                    values[country.Code] = 100;
                }
            }

            return(values);
        }