Esempio n. 1
0
 public AndroidNotificationProcessor(ISerializer serializer, INotificationDelegate ndelegate)
 {
     this.serializer = serializer;
     this.ndelegate  = ndelegate;
 }
Esempio n. 2
0
 public NotificationProcessor(INotificationDelegate ndelegate, IRepository repository)
 {
     this.ndelegate  = ndelegate;
     this.repository = repository;
 }
Esempio n. 3
0
 public ShinyNotificationDelegate(INotificationDelegate sdelegate)
 => this.sdelegate = sdelegate;
Esempio n. 4
0
 public void SetNotificationDelegate(INotificationDelegate notificationDelegate)
 {
     _notificationDelegate = notificationDelegate;
 }
 public NotificationBackgroundTaskProcessor(ISerializer serializer, INotificationDelegate ndelegate)
 {
     this.serializer = serializer;
     this.ndelegate  = ndelegate;
 }