Example #1
0
        private async void LoadControls()
        {
            dobDay.ItemsSource   = _dateModel.DayPicker();
            dobMonth.ItemsSource = _dateModel.MonthPicker();

            IList <Category> categoryList = await _customerDataService.GetCustomerCategories();

            catPicker.ItemsSource = categoryList.ToList();
        }
Example #2
0
        private async void LoadControls()
        {
            List <Category> categoryList = await _customerDataService.GetCustomerCategories();

            catPicker.ItemsSource = categoryList.ToList();
        }