Exemple #1
0
 public GetTopicReplyListViewComponent(
     IEntityReplyService <Reply> replyService,
     IEntityStore <Topic> entityStore,
     IAuthorizationService authorizationService)
 {
     _replyService         = replyService;
     _entityStore          = entityStore;
     _authorizationService = authorizationService;
 }
Exemple #2
0
 public GetIssueCommentListViewComponent(
     IEntityReplyService <Comment> replyService,
     IEntityStore <Issue> entityStore,
     IAuthorizationService authorizationService)
 {
     _replyService         = replyService;
     _entityStore          = entityStore;
     _authorizationService = authorizationService;
 }
Exemple #3
0
 public GetDocCommentListViewComponent(
     IEntityReplyService <DocComment> replyService,
     IAuthorizationService authorizationService,
     IEntityStore <Doc> entityStore)
 {
     _authorizationService = authorizationService;
     _replyService         = replyService;
     _entityStore          = entityStore;
 }
 public QuestionAnswerListViewComponent(
     IAuthorizationService authorizationService,
     IEntityReplyService <Answer> replyService,
     IEntityStore <Question> entityStore)
 {
     _authorizationService = authorizationService;
     _replyService         = replyService;
     _entityStore          = entityStore;
 }
Exemple #5
0
 public GetArticleCommentListViewComponent(
     IAuthorizationService authorizationService,
     IEntityReplyService <Comment> replyService,
     IEntityStore <Article> entityStore)
 {
     _authorizationService = authorizationService;
     _replyService         = replyService;
     _entityStore          = entityStore;
 }
Exemple #6
0
 public IdeaCommentListViewComponent(
     IEntityReplyStore <IdeaComment> entityReplyStore,
     IEntityStore <Idea> entityStore,
     IEntityReplyService <IdeaComment> replyService,
     IAuthorizationService authorizationService)
 {
     _entityReplyStore     = entityReplyStore;
     _entityStore          = entityStore;
     _replyService         = replyService;
     _authorizationService = authorizationService;
 }