Exemplo n.º 1
0
 public DefaultController(IUsersManagerService ums, IPageCache pageCache, IOptionsCache optionsCache, IContentManagerService cms, ICommentManagerService coms)
 {
     this.ums          = ums;
     this.pageCache    = pageCache;
     this.optionsCache = optionsCache;
     this.cms          = cms;
     this.coms         = coms;
 }
Exemplo n.º 2
0
 public ContentController(IContentManagerService cms, ICommentManagerService coms, IPageCache pageCache, IOptionsCache optionsCache
                          , IActionCooldownService _actioncd)
 {
     this.cms          = cms;
     this.coms         = coms;
     this.pageCache    = pageCache;
     this.optionsCache = optionsCache;
     this._actioncd    = _actioncd;
 }
Exemplo n.º 3
0
 public ModerationController(ICommentManagerService commentManagerService) => _commentManagerService = commentManagerService;
Exemplo n.º 4
0
 public CommentController(ICommentManagerService cms, ContentExtension ce)
 {
     this.cms = cms;
     this.ce  = ce;
 }
Exemplo n.º 5
0
 public CommentsAPIController(ICommentManagerService coms, IOptionsCache optionsCache)
 {
     this.coms         = coms;
     this.optionsCache = optionsCache;
 }
Exemplo n.º 6
0
 public CommentsItemViewComponent(IOptionsCache optionsCache, ICommentManagerService cms)
 {
     this.optionsCache = optionsCache;
     this.cms          = cms;
 }