Пример #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)
 {
 }
Пример #3
0
        protected NotificationControllerBase(
            IUiNotificationService uiNotifierService,
            IIntranetMemberService <IIntranetMember> intranetMemberService,
            INotificationContentProvider notificationContentProvider,
            IPopupNotificationService popupNotificationService)

        {
            _uiNotifierService           = uiNotifierService;
            _intranetMemberService       = intranetMemberService;
            _notificationContentProvider = notificationContentProvider;
            _popupNotificationService    = popupNotificationService;
        }
Пример #4
0
 public PopupNotifierService(
     INotificationSettingsService notificationSettingsService,
     IIntranetUserService <IIntranetUser> intranetUserService,
     INotificationModelMapper <PopupNotifierTemplate, PopupNotificationMessage> notificationModelMapper,
     IPopupNotificationService notificationsService
     )
 {
     _notificationSettingsService = notificationSettingsService;
     _intranetUserService         = intranetUserService;
     _notificationModelMapper     = notificationModelMapper;
     _notificationsService        = notificationsService;
 }
Пример #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;
 }
 public IntranetNavigationController(
     INavigationModelsBuilder navigationModelsBuilder,
     INodeModelService nodeModelService,
     IMyLinksHelper myLinksHelper,
     IGroupHelper groupHelper,
     IUBaselineRequestContext ubaselineRequestContext,
     IPopupNotificationService popupNotificationService,
     IBreadcrumbService breadcrumbService,
     IIntranetMemberService <IntranetMember> intranetMemberService)
 {
     _navigationModelsBuilder  = navigationModelsBuilder;
     _nodeModelService         = nodeModelService;
     _myLinksHelper            = myLinksHelper;
     _groupHelper              = groupHelper;
     _ubaselineRequestContext  = ubaselineRequestContext;
     _popupNotificationService = popupNotificationService;
     _breadcrumbService        = breadcrumbService;
     _intranetMemberService    = intranetMemberService;
 }