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