private async void AutoSuggestBox_TextChanged(AutoSuggestBox sender, AutoSuggestBoxTextChangedEventArgs args)
        {
            var list = await BookViewModel.LoadCategoriesByNameStartWithAsync(sender.Text);

            sender.ItemsSource = list;
        }