Example #1
0
        private async void DoRetrieveOpeningDetail()
        {
            _dialogService = Mvx.Resolve <IDialogService>();
            var dialog = await _dialogService.showLoadingDialog("Loading. . .");

            try
            {
                Detail = await _openingService.RetrieveOpeningDetail(FileName);
            }
            catch (Exception ex)
            {
                Debug.WriteLine($"Error Opening Detail - {ex.Message}");
            }
            finally
            {
                _dialogService.CloseDialog(dialog);
            }
        }