public NotificationStore(
     INotificationSubscriptionRepository notificationSubscriptionRepository,
     INotificationRepository notificationRepository,
     IUserNotificationRepository userNotificationRepository,
     IIdentityUserAppService identityUserAppService)
 {
     _notificationSubscriptionRepository = notificationSubscriptionRepository;
     _notificationRepository             = notificationRepository;
     _userNotificationRepository         = userNotificationRepository;
     _identityUserAppService             = identityUserAppService;
 }
Esempio n. 2
0
 public NotificationSubscriptionsController(INotificationSubscriptionRepository subscriptionRepository)
 {
     _subscriptionRepository = subscriptionRepository;
 }