Пример #1
0
 private async Task DownloadData()
 {
     try
     {
         Departures = await _service.GetAllAsync();
     }
     catch (System.InvalidOperationException ex)
     {
         await _dialogService.ShowMessage(ex.Message, "Error");
     }
 }