예제 #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;
        }