public TemplateController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config, ITagServices tagServices, ILinkServices linkServices) : base(entryServices, commentServices, config) { _tagServices = tagServices; _linkServices = linkServices; }
public CommentController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config) : base(entryServices, commentServices, config) { }
public EntryController(IEntryServices entryServices) { _entryServices = entryServices; }
public BaseController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config) { _entryServices = entryServices; _commentServices = commentServices; _config = config; }
public RedirectController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config, IRedirectServices redirectServices) : base(entryServices, commentServices, config) { _redirectServices = redirectServices; }
public LinkController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config, ILinkServices linkServices) : base(entryServices, commentServices, config) { _linkServices = linkServices; }
public AuthController(IEntryServices entryServices, ICommentServices commentServices, IConfigurationInfo config, IFormsAuthenticationProvider auth) : base(entryServices, commentServices, config) { _auth = auth; }
public EntryController(IEntryServices entryServices, ICommentServices commentServices, ITagServices tagServices, IConfigurationInfo config, IModelCache cache) : base(entryServices, commentServices, config) { _tagServices = tagServices; _cache = cache; }