Ejemplo n.º 1
0
 public NewNotificationMessageService(
     INotificationModelMapper <UiNotifierTemplate, UiNotificationMessage> notificationModelMapper,
     INotificationSettingsService notificationSettingsService,
     IIntranetMemberService <IIntranetMember> intranetMemberService)
 {
     _notificationModelMapper     = notificationModelMapper;
     _notificationSettingsService = notificationSettingsService;
     _intranetMemberService       = intranetMemberService;
 }
 public MailNotifierService(
     IMailService mailService,
     IIntranetUserService <IIntranetUser> intranetUserService,
     INotificationModelMapper <EmailNotifierTemplate, EmailNotificationMessage> notificationModelMapper,
     NotificationSettingsService notificationSettingsService)
 {
     _mailService                 = mailService;
     _intranetUserService         = intranetUserService;
     _notificationModelMapper     = notificationModelMapper;
     _notificationSettingsService = notificationSettingsService;
 }
Ejemplo n.º 3
0
 public PopupNotifierService(
     INotificationSettingsService notificationSettingsService,
     IIntranetUserService <IIntranetUser> intranetUserService,
     INotificationModelMapper <PopupNotifierTemplate, PopupNotificationMessage> notificationModelMapper,
     IPopupNotificationService notificationsService
     )
 {
     _notificationSettingsService = notificationSettingsService;
     _intranetUserService         = intranetUserService;
     _notificationModelMapper     = notificationModelMapper;
     _notificationsService        = notificationsService;
 }
Ejemplo n.º 4
0
 public MailNotifierService(
     IMailService mailService,
     IIntranetUserService <IIntranetUser> intranetUserService,
     INotificationModelMapper <EmailNotifierTemplate, EmailNotificationMessage> notificationModelMapper,
     NotificationSettingsService notificationSettingsService,
     ISqlRepository <global::Uintra.Notification.Notification> notificationRepository)
 {
     _mailService                 = mailService;
     _intranetUserService         = intranetUserService;
     _notificationModelMapper     = notificationModelMapper;
     _notificationSettingsService = notificationSettingsService;
     _notificationRepository      = notificationRepository;
 }
Ejemplo n.º 5
0
 public UiNotifierService(
     INotificationModelMapper <UiNotifierTemplate, UiNotificationMessage> notificationModelMapper,
     INotificationModelMapper <DesktopNotifierTemplate, DesktopNotificationMessage> desktopNotificationModelMapper,
     NotificationSettingsService notificationSettingsService,
     IIntranetMemberService <IIntranetMember> intranetMemberService,
     UiNotificationService notificationsService)
 {
     _notificationModelMapper        = notificationModelMapper;
     _notificationSettingsService    = notificationSettingsService;
     _intranetMemberService          = intranetMemberService;
     _notificationsService           = notificationsService;
     _desktopNotificationModelMapper = desktopNotificationModelMapper;
 }
Ejemplo n.º 6
0
 public MonthlyEmailService(IMailService mailService,
                            IIntranetMemberService <IIntranetMember> intranetMemberService,
                            IExceptionLogger logger,
                            IBulletinsService <BulletinBase> bulletinsService,
                            IEventsService <EventBase> eventsService,
                            INewsService <NewsBase> newsService,
                            IUserTagRelationService userTagService,
                            IActivityLinkService activityLinkService,
                            NotificationSettingsService notificationSettingsService,
                            INotificationModelMapper <EmailNotifierTemplate, EmailNotificationMessage> notificationModelMapper,
                            IApplicationSettings applicationSettings)
     : base(mailService, intranetMemberService, logger, notificationSettingsService, applicationSettings)
 {
     _bulletinsService        = bulletinsService;
     _eventsService           = eventsService;
     _newsService             = newsService;
     _userTagService          = userTagService;
     _activityLinkService     = activityLinkService;
     _notificationModelMapper = notificationModelMapper;
 }
Ejemplo n.º 7
0
 public MonthlyEmailService(IMailService mailService,
                            IIntranetMemberService <IntranetMember> intranetMemberService,
                            ILogger logger,
                            ISocialService <Social.Entities.Social> bulletinsService,
                            IEventsService <Event> eventsService,
                            INewsService <News.Entities.News> newsService,
                            IUserTagRelationService userTagService,
                            IActivityLinkService activityLinkService,
                            INotificationSettingsService notificationSettingsService,
                            INotificationModelMapper <EmailNotifierTemplate, EmailNotificationMessage> notificationModelMapper,
                            IApplicationSettings applicationSettings)
     : base(mailService, intranetMemberService, logger, notificationSettingsService, applicationSettings)
 {
     _bulletinsService        = bulletinsService;
     _eventsService           = eventsService;
     _newsService             = newsService;
     _userTagService          = userTagService;
     _activityLinkService     = activityLinkService;
     _notificationModelMapper = notificationModelMapper;
 }