public DraculaEngineController(
     IAssociativyServices associativyServices,
     IFrontendServices frontendServices,
     IOrchardServices orchardServices)
     : base(associativyServices, frontendServices, orchardServices)
 {
 }
 public TagGraphManager(
     IContentManager contentManager,
     IAssociativyServices associativyServices)
 {
     _contentManager = contentManager;
     _associativyServices = associativyServices;
 }
 protected AssociativyControllerBase(
     IAssociativyServices associativyServices)
 {
     _associativyServices = associativyServices;
     _graphManager = associativyServices.GraphManager;
     _graphEditor = associativyServices.GraphEditor;
 }
 public SetupController(
     IAssociativyServices associativyServices,
     IOrchardServices orchardServices)
 {
     _associativyServices = associativyServices;
     _contentManager = orchardServices.ContentManager;
     _orchardServices = orchardServices;
 }
 public JitEngineController(
     IAssociativyServices associativyServices,
     IFrontendServices frontendServices,
     IOrchardServices orchardServices,
     IJitConfigurationHandler configurationHandler)
     : base(associativyServices, frontendServices, orchardServices)
 {
     _configurationHandler = configurationHandler;
 }
 public GraphvizEngineController(
     IAssociativyServices associativyServices,
     IFrontendServices frontendServices,
     IOrchardServices orchardServices,
     IGraphvizConfigurationHandler configurationHandler,
     IGraphImageService graphImageService)
     : base(associativyServices, frontendServices, orchardServices)
 {
     _configurationHandler = configurationHandler;
     _graphImageService = graphImageService;
 }
 public TagNodeUpdater(
     IContentManager contentManager,
     IAssociativyServices associativyServices,
     ITagGraphManager tagGraphManager,
     IScheduledTaskManager scheduledTaskManager,
     IClock clock)
 {
     _contentManager = contentManager;
     _associativyServices = associativyServices;
     _tagGraphManager = tagGraphManager;
     _scheduledTaskManager = scheduledTaskManager;
     _clock = clock;
 }
        protected FrontendControllerBase(
            IAssociativyServices associativyServices,
            IFrontendServices frontendServices,
            IOrchardServices orchardServices)
            : base(associativyServices)
        {
            _frontendServices = frontendServices;
            _frontendContextAccessor = frontendServices.FrontendContextAccessor;

            _orchardServices = orchardServices;
            _contentManager = orchardServices.ContentManager;

            T = NullLocalizer.Instance;
        }
 public TagGraphUpdater(
     IDistributedLockManager lockManager,
     IUpdateQueueManager updaterQueueManager,
     ITagGraphManager tagGraphManager,
     ITagService tagService,
     IAssociativyServices associativyServices,
     IContentManager contentManager)
 {
     _lockManager = lockManager;
     _updaterQueueManager = updaterQueueManager;
     _tagGraphManager = tagGraphManager;
     _tagService = tagService;
     _associativyServices = associativyServices;
     _contentManager = contentManager;
 }
예제 #10
0
        public SearchFilter(IAssociativyServices associativyServices)
        {
            _associativyServices = associativyServices;

            T = NullLocalizer.Instance;
        }