public async void ImportRest()
        {
            void ImportAllInternal()
            {
                _importWizardViewModel.SetTables(new TableImportArguments {
                    ImprotRestRepository = true
                }, Tables.ToArray());
            }

            await ToggleBusyAsync(Task.Run(new Action(ImportAllInternal)));

            _importWizardViewModel.Show();
        }
Exemplo n.º 2
0
 public void ConfigureTable()
 {
     _importWizardViewModel.SetTables(TableImportArguments.All, this);
     _importWizardViewModel.Show();
 }