Exemple #1
0
 public PushManager(INativeAdapter native,
                    ILogger <PushManager> logger,
                    PushContainer container,
                    AzureNotificationConfig config)
 {
     this.native    = native;
     this.container = container;
     this.logger    = logger;
     this.config    = config;
 }
Exemple #2
0
 public PushManager(INativeAdapter adapter,
                    PushContainer container,
                    ILogger <PushManager> logger,
                    AppleLifecycle lifecycle,
                    FirebaseConfiguration?config = null)
 {
     this.adapter   = adapter;
     this.container = container;
     this.logger    = logger;
     this.lifecycle = lifecycle;
     this.config    = config;
 }
Exemple #3
0
 public PushManager(OneSignalPushConfig config, PushContainer container)
 {
     this.config    = config;
     this.container = container;
 }