public void FillBucket() { Items = new Dictionary <string, string>(); var brands = crmService.GetBrands(); if (brands == null) { return; } foreach (var brand in brands) { Items.Add(brand.Code, brand.Id); } }