Ejemplo n.º 1
0
        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);
        }
Ejemplo n.º 2
0
 public async Task CopyAsync()
 {
     await DataBaseUtility.CopyAsync(this.authentication, this);
 }