public DraculaEngineController(
     IAssociativyServices associativyServices,
     IFrontendServices frontendServices,
     IOrchardServices orchardServices)
     : base(associativyServices, frontendServices, 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;
 }
        protected FrontendControllerBase(
            IAssociativyServices associativyServices,
            IFrontendServices frontendServices,
            IOrchardServices orchardServices)
            : base(associativyServices)
        {
            _frontendServices = frontendServices;
            _frontendContextAccessor = frontendServices.FrontendContextAccessor;

            _orchardServices = orchardServices;
            _contentManager = orchardServices.ContentManager;

            T = NullLocalizer.Instance;
        }
Esempio n. 5
0
 public HomeController(IFrontendServices frontendServices)
 {
     this.frontendServices = frontendServices;
 }