Beispiel #1
0
 public CommentingViewComponent(
     ICommentPublicAppService commentPublicAppService,
     IOptions <AbpMvcUiOptions> options)
 {
     CommentPublicAppService = commentPublicAppService;
     AbpMvcUiOptions         = options.Value;
 }
Beispiel #2
0
 public CommentingViewComponent(
     ICommentPublicAppService commentPublicAppService,
     IOptions <AbpMvcUiOptions> options,
     IMarkdownToHtmlRenderer markdownToHtmlRenderer)
 {
     CommentPublicAppService = commentPublicAppService;
     MarkdownToHtmlRenderer  = markdownToHtmlRenderer;
     AbpMvcUiOptions         = options.Value;
 }
Beispiel #3
0
 public ReactionSelectionViewComponent(
     IReactionPublicAppService reactionPublicAppService,
     IOptions <CmsKitUiOptions> options,
     IOptions <AbpMvcUiOptions> abpMvcUiOptions)
 {
     ReactionPublicAppService = reactionPublicAppService;
     Options         = options.Value;
     AbpMvcUiOptions = abpMvcUiOptions.Value;
 }