Exemple #1
0
 async Task Save()
 {
     if (counter.Id == null)
     {
         await service.AddNewCounter(counter.Account, counter.Password);
     }
     else
     {
         await service.UpdateAccount(counter);
     }
     await navigationService.Close(this);
 }