protected async override void OnExecute(object parameter)
        {
            var dialog = new SelectDataBaseViewModel(this.authenticator, this.cremaAppHost);

            if (await dialog.ShowDialogAsync() != true)
            {
                return;
            }
            await DataBaseUtility.CopyAsync(this.authenticator, dialog.SelectedItem);
        }
Example #2
0
 public async Task CopyAsync()
 {
     await DataBaseUtility.CopyAsync(this.authentication, this);
 }