コード例 #1
0
 public NotifierDataBuilder(
     IIntranetMemberService <IntranetMember> intranetMemberService,
     INotifierDataHelper notifierDataHelper)
 {
     _intranetMemberService = intranetMemberService;
     _notifierDataHelper    = notifierDataHelper;
 }
コード例 #2
0
 public PagePromotionNotificationService(INotificationsService notificationsService,
                                         INotifierDataHelper notifierDataHelper,
                                         ICommentsService commentsService,
                                         IIntranetUserService <IIntranetUser> userService,
                                         UmbracoHelper umbracoHelper)
 {
     _notificationsService = notificationsService;
     _notifierDataHelper   = notifierDataHelper;
     _commentsService      = commentsService;
     _userService          = userService;
     _umbracoHelper        = umbracoHelper;
 }
コード例 #3
0
 public ContentPageNotificationService(INotificationsService notificationsService,
                                       INotifierDataHelper notifierDataHelper,
                                       ICommentsService commentsService,
                                       IIntranetMemberService <IIntranetMember> memberService,
                                       UmbracoHelper umbracoHelper)
 {
     _notificationsService = notificationsService;
     _notifierDataHelper   = notifierDataHelper;
     _commentsService      = commentsService;
     _memberService        = memberService;
     _umbracoHelper        = umbracoHelper;
 }
コード例 #4
0
 public ContentPageNotificationService(
     INotifierDataHelper notifierDataHelper,
     IUBaselineRequestContext requestContext,
     INotificationsService notificationsService,
     IIntranetMemberService <IntranetMember> memberService,
     ICommentsService commentsService,
     INodeModelService nodeModelService)
 {
     _notifierDataHelper   = notifierDataHelper;
     _requestContext       = requestContext;
     _notificationsService = notificationsService;
     _memberService        = memberService;
     _commentsService      = commentsService;
     _nodeModelService     = nodeModelService;
 }
コード例 #5
0
 public UserListController(
     IIntranetMemberService <IntranetMember> intranetMemberService,
     IElasticMemberIndex <SearchableMember> elasticIndex,
     IProfileLinkProvider profileLinkProvider,
     IGroupService groupService,
     IGroupMemberService groupMemberService,
     INotificationsService notificationsService,
     INotifierDataHelper notifierDataHelper)
 {
     _elasticIndex          = elasticIndex;
     _profileLinkProvider   = profileLinkProvider;
     _groupService          = groupService;
     _intranetMemberService = intranetMemberService;
     _groupMemberService    = groupMemberService;
     _notificationsService  = notificationsService;
     _notifierDataHelper    = notifierDataHelper;
 }
コード例 #6
0
 public EventsService(
     IIntranetActivityRepository intranetActivityRepository,
     ICacheService cacheService,
     IIntranetUserService <IIntranetUser> intranetUserService,
     ICommentsService commentsService,
     ILikesService likesService,
     ISubscribeService subscribeService,
     IPermissionsService permissionsService,
     INotificationsService notificationService,
     IMediaHelper mediaHelper,
     IElasticUintraActivityIndex activityIndex,
     IDocumentIndexer documentIndexer,
     IActivityTypeProvider activityTypeProvider,
     IIntranetMediaService intranetMediaService,
     IGroupActivityService groupActivityService,
     IActivityLinkService linkService,
     INotifierDataHelper notifierDataHelper,
     IActivityLocationService activityLocationService,
     UserTagService userTagService,
     IActivitySubscribeSettingService activitySubscribeSettingService,
     IFeedTypeProvider feedTypeProvider,
     IActivityLinkPreviewService activityLinkPreviewService,
     IGroupService groupService)
     : base(intranetActivityRepository, cacheService, activityTypeProvider, intranetMediaService, activityLocationService, activityLinkPreviewService)
 {
     _intranetUserService             = intranetUserService;
     _commentsService                 = commentsService;
     _likesService                    = likesService;
     _subscribeService                = subscribeService;
     _permissionsService              = permissionsService;
     _notificationService             = notificationService;
     _mediaHelper                     = mediaHelper;
     _activityIndex                   = activityIndex;
     _documentIndexer                 = documentIndexer;
     _intranetMediaService            = intranetMediaService;
     _groupActivityService            = groupActivityService;
     _linkService                     = linkService;
     _notifierDataHelper              = notifierDataHelper;
     _userTagService                  = userTagService;
     _activitySubscribeSettingService = activitySubscribeSettingService;
     _feedTypeProvider                = feedTypeProvider;
     _groupService                    = groupService;
 }
コード例 #7
0
 public NewNotifierDataValueProvider(ICommentsService commentsService, INotifierDataHelper notifierDataHelper)
 {
     _commentsService    = commentsService;
     _notifierDataHelper = notifierDataHelper;
 }