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

            try
            {
                Openings = await _openingService.RetrieveAllOpenings();

                FilteredOpenings = Openings;
            }
            catch (Exception ex)
            {
                Debug.WriteLine(ex.Message);
            }
            finally
            {
                _dialogService.CloseDialog(dialog);
            }
        }