Beispiel #1
0
 public MobileNotification(IOneSignalApi api, ISettingsService <MobileNotificationSettings> sn, ILogger <MobileNotification> log, INotificationTemplatesRepository r,
                           IMovieRequestRepository m, ITvRequestRepository t, ISettingsService <CustomizationSettings> s, IRepository <NotificationUserId> notification,
                           UserManager <OmbiUser> um) : base(sn, r, m, t, s, log)
 {
     _api           = api;
     _logger        = log;
     _notifications = notification;
     _userManager   = um;
 }
Beispiel #2
0
 public MobileNotification(IOneSignalApi api, ISettingsService <MobileNotificationSettings> sn, ILogger <MobileNotification> log, INotificationTemplatesRepository r,
                           IMovieRequestRepository m, ITvRequestRepository t, ISettingsService <CustomizationSettings> s, IRepository <NotificationUserId> notification,
                           UserManager <OmbiUser> um, IRepository <RequestSubscription> sub, IMusicRequestRepository music,
                           IRepository <UserNotificationPreferences> userPref) : base(sn, r, m, t, s, log, sub, music, userPref)
 {
     _api           = api;
     _logger        = log;
     _notifications = notification;
     _userManager   = um;
 }