예제 #1
0
        public void FillBucket()
        {
            Items = new Dictionary <string, string>();
            var currencies = crmService.GetCurrencies();

            if (currencies == null)
            {
                return;
            }
            foreach (var currency in currencies)
            {
                Items.Add(currency.Code, currency.Id);
            }
        }