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