Exemplo n.º 1
0
 public CommentsService(ICommentLinkPreviewService commentLinkPreviewService,
     ISqlRepository<Guid, Comment> commentsRepository,
     IGroupActivityService groupActivityService,
     IGroupService groupService)
 {
     _commentLinkPreviewService = commentLinkPreviewService;
     _commentsRepository = commentsRepository;
     _groupActivityService = groupActivityService;
     _groupService = groupService;
 }
Exemplo n.º 2
0
 public CommentsService(ISqlRepository <Guid, Comment> commentsRepository, ICommentLinkPreviewService commentLinkPreviewService)
 {
     _commentsRepository        = commentsRepository;
     _commentLinkPreviewService = commentLinkPreviewService;
 }