private async Task getItemTypes()
        {
            var result = await client.GetItemTypesAsync();

            result.Add("", null);
            ItemTypeList.ItemsSource       = result;
            ItemTypeList.SelectedValuePath = "Key";
            ItemTypeList.DisplayMemberPath = "Value";
        }