Exemple #1
0
 public NotifierDataHelper(
     IActivityLinkService linkService,
     ICommentLinkHelper commentLinkHelper,
     IGroupService groupService)
 {
     _linkService       = linkService;
     _commentLinkHelper = commentLinkHelper;
     _groupService      = groupService;
 }
 public CommentsController(
     ICommentsService commentsService,
     IIntranetMemberService <IIntranetMember> intranetMemberService,
     IProfileLinkProvider profileLinkProvider,
     IContextTypeProvider contextTypeProvider,
     ICommandPublisher commandPublisher,
     IActivitiesServiceFactory activitiesServiceFactory,
     IMentionService mentionService,
     ICommentLinkHelper commentLinkHelper)
     : base(commentsService, intranetMemberService, profileLinkProvider, contextTypeProvider, commandPublisher, activitiesServiceFactory)
 {
     _commentsService       = commentsService;
     _intranetMemberService = intranetMemberService;
     _mentionService        = mentionService;
     _commentLinkHelper     = commentLinkHelper;
 }
Exemple #3
0
 public CommentsController(
     ICommentsHelper commentsHelper,
     ICommentsService commentsService,
     IIntranetMemberService <IntranetMember> intranetMemberService,
     ICommandPublisher commandPublisher,
     IActivitiesServiceFactory activitiesServiceFactory,
     IMentionService mentionService,
     ICommentLinkHelper commentLinkHelper,
     IGroupActivityService groupActivityService,
     INodeModelService nodeModelService,
     IGroupService groupService)
 {
     _commentsHelper           = commentsHelper;
     _commentsService          = commentsService;
     _intranetMemberService    = intranetMemberService;
     _commandPublisher         = commandPublisher;
     _activitiesServiceFactory = activitiesServiceFactory;
     _mentionService           = mentionService;
     _commentLinkHelper        = commentLinkHelper;
     _groupActivityService     = groupActivityService;
     _nodeModelService         = nodeModelService;
     _groupService             = groupService;
 }
Exemple #4
0
 public NotifierDataHelper(IActivityLinkService linkService, ICommentLinkHelper commentLinkHelper)
 {
     _linkService       = linkService;
     _commentLinkHelper = commentLinkHelper;
 }