public async Task ShowGeneralOptionsAsync()
        {
            await EditGeneralOptionsAsync(
                o =>
            {
                var generalOptionsViewModel = new GeneralOptionsViewModel {
                    Options = o.Clone()
                };

                if (_uiService.ShowGeneralOptions(generalOptionsViewModel))
                {
                    return(Tuple.Create(true, generalOptionsViewModel.Options));
                }
                else
                {
                    return(Tuple.Create(false, (GeneralOptions)null));
                }
            });
        }