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