Example #1
0
 public IdeasHelper(IMapper mapper, IIdeationManager ideationManager, IUserManager userManager, ICommentsHelper commentsHelper)
 {
     _mapper          = mapper;
     _ideationManager = ideationManager;
     _userManager     = userManager;
     _commentsHelper  = commentsHelper;
 }
 public IdeasController(IMapper mapper, IIdeationManager ideationManager, IUserManager userManager, IUnitOfWorkManager unitOfWorkManager, IFileService fileService, ICommentsHelper commentsHelper, IIdeasHelper ideasHelper)
 {
     _mapper            = mapper;
     _ideationManager   = ideationManager;
     _userManager       = userManager;
     _unitOfWorkManager = unitOfWorkManager;
     _fileService       = fileService;
     _commentsHelper    = commentsHelper;
     _ideasHelper       = ideasHelper;
 }
Example #3
0
 public CommentsPanelViewModelConverter(
     IUBaselineRequestContext requestContext,
     ICommentsService commentsService,
     ICommentsHelper commentsHelper,
     IActivityTypeHelper activityTypeHelper,
     IGroupActivityService groupActivityService,
     IIntranetMemberService <IntranetMember> intranetMemberService,
     IErrorLinksService errorLinksService,
     IUBaselineRequestContext context)
     : base(errorLinksService)
 {
     _requestContext        = requestContext;
     _commentsService       = commentsService;
     _commentsHelper        = commentsHelper;
     _activityTypeHelper    = activityTypeHelper;
     _groupActivityService  = groupActivityService;
     _intranetMemberService = intranetMemberService;
     _context = context;
 }
Example #4
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;
 }