public TestPushNotificationsClientService(
     ISecureStorageService secureStorageService,
     IAnalyticsService analyticsService,
     IPushNotificationTapHandler pushNotificationTapHandler)
     : base(analyticsService, secureStorageService, pushNotificationTapHandler)
 {
 }
 protected BasePushNotificationsClientService(
     IAnalyticsService analyticsService,
     ISecureStorageService secureStorageService,
     IPushNotificationTapHandler pushNotificationTapHandler)
 {
     AnalyticsService            = analyticsService;
     _secureStorageService       = secureStorageService;
     _pushNotificationTapHandler = pushNotificationTapHandler;
 }
        protected BasePushNotificationsClientService(
            IAnalyticsService analyticsService,
            ISecureStorageService secureStorageService,
            IPushNotificationTapHandler pushNotificationTapHandler)
        {
            AnalyticsService            = analyticsService;
            _secureStorageService       = secureStorageService;
            _pushNotificationTapHandler = pushNotificationTapHandler;

            NewNotificationEvent += HandleNewForegroundNotification;
        }