public OutputCachedPartsDisplayManager(IWorkContextAccessor workContextAccessor, 
             IEnumerable<IShapeDisplayEvents> shapeDisplayEvents, 
             Lazy<IShapeTableLocator> shapeTableLocator, 
             IPerformanceMonitor performanceMonitor, 
             IOutputCachedPartsService outputCachedPartsService) 
     : base(workContextAccessor, shapeDisplayEvents, shapeTableLocator, performanceMonitor) 
 {
     _outputCachedPartsService = outputCachedPartsService;
 }
 public OutputCachedPartsDisplayManager(IWorkContextAccessor workContextAccessor,
                                        IEnumerable <IShapeDisplayEvents> shapeDisplayEvents,
                                        Lazy <IShapeTableLocator> shapeTableLocator,
                                        IPerformanceMonitor performanceMonitor,
                                        IOutputCachedPartsService outputCachedPartsService)
     : base(workContextAccessor, shapeDisplayEvents, shapeTableLocator, performanceMonitor)
 {
     _outputCachedPartsService = outputCachedPartsService;
 }
コード例 #3
0
 public AdminController(IOrchardServices orchardServices,
                        IEnumerable <ICacheKeyCompositeProvider> cacheKeyCompositeProviders,
                        ICacheService cacheService,
                        IRepository <CacheKeyRecord> cacheKeyRecordRepository,
                        IContentManager contentManager,
                        IOutputCachedPartsService outputCachedPartsService)
 {
     _orchardServices            = orchardServices;
     _cacheKeyCompositeProviders = cacheKeyCompositeProviders;
     _cacheService             = cacheService;
     _cacheKeyRecordRepository = cacheKeyRecordRepository;
     _contentManager           = contentManager;
     _outputCachedPartsService = outputCachedPartsService;
     T      = NullLocalizer.Instance;
     Logger = NullLogger.Instance;
 }
コード例 #4
0
 public AdminController(IOrchardServices orchardServices, 
     IEnumerable<ICacheKeyCompositeProvider> cacheKeyCompositeProviders, 
     ICacheService cacheService, 
     IRepository<CacheKeyRecord> cacheKeyRecordRepository, 
     IContentManager contentManager, 
     IOutputCachedPartsService outputCachedPartsService)
 {
     _orchardServices = orchardServices;
     _cacheKeyCompositeProviders = cacheKeyCompositeProviders;
     _cacheService = cacheService;
     _cacheKeyRecordRepository = cacheKeyRecordRepository;
     _contentManager = contentManager;
     _outputCachedPartsService = outputCachedPartsService;
     T = NullLocalizer.Instance;
     Logger = NullLogger.Instance;
 }
 public OutputCachedPartInvalidationHandler(IOutputCachedPartsService outputCachedPartsService)
 {
     _outputCachedPartsService = outputCachedPartsService;
 }
コード例 #6
0
 public MenuPartInvalidationHandler(IOutputCachedPartsService outputCachedPartsService, IContentManager contentManager, IMenuService menuService)
 {
     _outputCachedPartsService = outputCachedPartsService;
     _contentManager           = contentManager;
     _menuService = menuService;
 }
コード例 #7
0
 public OutputCachedPartInvalidationHandler(IOutputCachedPartsService outputCachedPartsService)
 {
     _outputCachedPartsService = outputCachedPartsService;
 }
コード例 #8
0
 public MenuPartInvalidationHandler(IOutputCachedPartsService outputCachedPartsService, IContentManager contentManager, IMenuService menuService)
 {
     _outputCachedPartsService = outputCachedPartsService;
     _contentManager = contentManager;
     _menuService = menuService;
 }