示例#1
0
 private void SendReApproveConsentsNotificationIfNeeded()
 {
     if (OnboardingStatusHelper.Status == OnboardingStatus.OnlyMainOnboardingCompleted &&
         !LocalPreferencesHelper.TermsNotificationWasShown)
     {
         NotificationsHelper.CreateNotificationOnlyIfInBackground(NotificationsEnum.ReApproveConsents);
     }
 }
示例#2
0
 private void SendReApproveConsentsNotificationIfNeeded()
 {
     if (ConsentsHelper.IsNotFullyOnboarded &&
         (SystemTime.Now() - LocalPreferencesHelper.LastDateTimeTermsNotificationWasShown).Days > 0)
     {
         NotificationsHelper.CreateNotificationOnlyIfInBackground(NotificationsEnum.ReApproveConsents);
     }
 }
示例#3
0
 private void SendReApproveConsentsNotificationIfNeeded()
 {
     if (ConsentsHelper.IsNotFullyOnboarded &&
         !LocalPreferencesHelper.TermsNotificationWasShown)
     {
         NotificationsHelper.CreateNotificationOnlyIfInBackground(NotificationsEnum.ReApproveConsents);
     }
 }