示例#1
0
        private void NotifyUserOfDelinquencyWithoutReconnection()
        {
            _notificationSender.Send(
                Translation.Get("Notifications_Delinquency_Title"),
                Translation.Get("Notifications_Delinquency_Description"));

            _delinquencyPopupViewModel.SetNoReconnectionData();
            _popups.Show <DelinquencyPopupViewModel>();
        }
示例#2
0
 private async Task ShowDelinquencyPopupViewModelAsync()
 {
     _delinquencyPopupViewModel.SetNoReconnectionData();
     _popupWindows.Show <DelinquencyPopupViewModel>();
     await ForceReconnectAsync();
 }