Ejemplo n.º 1
0
 public NotificationController(
     IUiNotificationService uiNotificationService,
     IIntranetMemberService <IIntranetMember> intranetMemberService,
     INotificationContentProvider notificationContentProvider,
     IPopupNotificationService popupNotificationService)
     : base(uiNotificationService, intranetMemberService, notificationContentProvider, popupNotificationService)
 {
 }
 public NotificationController(
     IUiNotificationService uiNotificationService,
     IIntranetUserService <IIntranetUser> intranetUserService,
     INotificationContentProvider notificationContentProvider,
     IIntranetUserContentProvider intranetUserContentProvider,
     IProfileLinkProvider profileLinkProvider,
     IPopupNotificationService popupNotificationService)
     : base(uiNotificationService, intranetUserService, notificationContentProvider, profileLinkProvider, popupNotificationService)
 {
 }
Ejemplo n.º 3
0
        protected NotificationControllerBase(
            IUiNotificationService uiNotifierService,
            IIntranetMemberService <IIntranetMember> intranetMemberService,
            INotificationContentProvider notificationContentProvider,
            IPopupNotificationService popupNotificationService)

        {
            _uiNotifierService           = uiNotifierService;
            _intranetMemberService       = intranetMemberService;
            _notificationContentProvider = notificationContentProvider;
            _popupNotificationService    = popupNotificationService;
        }
Ejemplo n.º 4
0
 public UiNotifierService(
     INotificationModelMapper <UiNotifierTemplate, UiNotificationMessage> notificationModelMapper,
     INotificationModelMapper <DesktopNotifierTemplate, DesktopNotificationMessage> desktopNotificationModelMapper,
     INotificationSettingsService notificationSettingsService,
     IIntranetMemberService <IntranetMember> intranetMemberService,
     IUiNotificationService notificationsService)
 {
     _notificationModelMapper        = notificationModelMapper;
     _notificationSettingsService    = notificationSettingsService;
     _intranetMemberService          = intranetMemberService;
     _notificationsService           = notificationsService;
     _desktopNotificationModelMapper = desktopNotificationModelMapper;
 }
Ejemplo n.º 5
0
 public NotificationApiController(
     IUBaselineRequestContext requestContext,
     INodeModelService nodeModelService,
     IUiNotificationService uiNotifierService,
     IPopupNotificationService popupNotificationService,
     IIntranetMemberService <IntranetMember> intranetMemberService)
 {
     _requestContext           = requestContext;
     _nodeModelService         = nodeModelService;
     _uiNotifierService        = uiNotifierService;
     _popupNotificationService = popupNotificationService;
     _intranetMemberService    = intranetMemberService;
 }