コード例 #1
0
 public NotificationService(ILogger <NotificationService> logger, ISubscritionRepository subscritionRepository, INotificationRepository notificationRepository, INudgeRepository nudgeRepository)
 {
     this.SubscritionRepository  = subscritionRepository;
     this.NotificationRepository = notificationRepository;
     this.NudgeRepository        = nudgeRepository;
     this.logger = logger;
 }
コード例 #2
0
 public PushNotificationService(ISubscritionRepository pushNotificationRepository, INotificationService notificationService)
 {
     this.PushNotificationRepository = pushNotificationRepository;
     this.NotificationService        = notificationService;
 }