private async void filListCatString()
        {
            bi.IsBusy = true;
            List <string> myCat = new List <string>();
            var           cat   = await rcs.getAllProjectsAsync();

            foreach (Projects pc in cat)
            {
                myCat.Add(pc.Name);
            }
            SelectionListView.ItemsSource = cat;
            bi.IsBusy = false;
        }