public NotificationSettingsApiController(
     INotificationSettingsService notificationSettingsService,
     IActivityTypeProvider activityTypeProvider,
     INotificationTypeProvider notificationTypeProvider,
     INotifierTypeProvider notifierTypeProvider)
     : base(notificationSettingsService, activityTypeProvider, notificationTypeProvider, notifierTypeProvider)
 {
 }
 protected NotificationSettingsApiControllerBase(
     INotificationSettingsService notificationSettingsService,
     IActivityTypeProvider activityTypeProvider,
     INotificationTypeProvider notificationTypeProvider,
     INotifierTypeProvider notifierTypeProvider)
 {
     _notificationSettingsService = notificationSettingsService;
     _activityTypeProvider        = activityTypeProvider;
     _notificationTypeProvider    = notificationTypeProvider;
     _notifierTypeProvider        = notifierTypeProvider;
 }
Example #3
0
 public MemberNotifiersSettingsService(ISqlRepository <MemberNotifierSetting> repository, INotifierTypeProvider notifierTypeProvider)
 {
     _memberNotifierSettingRepository = repository;
     _notifierTypeProvider            = notifierTypeProvider;
 }