Ejemplo n.º 1
0
 private async void ExecuteShowFailedProducts(object obj)
 {
     ShowListDialog showListDialog = new ShowListDialog("Liste des produits dont la mise à jour n'a pas abouti", failedProducts);
     await showListDialog.ShowAsync();
 }
Ejemplo n.º 2
0
 private async void ExecuteShowUpdatedProducts(object obj)
 {
     ShowListDialog showListDialog = new ShowListDialog("Liste des produits mis à jour", productsUpdated);
     await showListDialog.ShowAsync();
 }