コード例 #1
0
 public FirebaseNotificationService(IFirebaseNotificationSender firebaseNotificationSender,
                                    IApplicationDataUnit applicationDataUnit, IMapper mapper)
 {
     _firebaseNotificationSender = firebaseNotificationSender;
     _applicationDataUnit        = applicationDataUnit;
     _mapper = mapper;
 }
コード例 #2
0
 public SendNotificationController(
     INotificationStore notificationStore = null,
     IFirebaseNotificationSender firebasePushNotificationSender = null)
 {
     _notificationStore = notificationStore ?? new NotificationStore();
     _firebasePusnNotificationSender = firebasePushNotificationSender ?? new FirebaseNotificationSender();
 }
コード例 #3
0
 public Person(string personalNumber, IFirebaseNotificationSender firebaseNotificationSender)
 {
     _firebaseNotificationSender = firebaseNotificationSender;
     _newEvents      = new List <PersonEvent>();
     _sentMessageIds = new List <string>();
     PersonalNumber  = personalNumber;
     _firebaseTokenAndNotificationTypeIds = new List <FirebaseTokenAndNotificationTypeId>();
 }
コード例 #4
0
 public PersonExecutor(IStoreEvents store, IFirebaseNotificationSender firebaseNotificationSender)
 {
     _store = store;
     _firebaseNotificationSender = firebaseNotificationSender;
 }