Ejemplo n.º 1
0
 public AuthorizationContextCache(ICache cache, IControllerContextCache controllerContextCache, IControllerDescriptorCache controllerDescriptorCache, IRouteDataCache routeDataCache)
 {
     this.cache                     = cache;
     this.routeDataCache            = routeDataCache;
     this.controllerContextCache    = controllerContextCache;
     this.controllerDescriptorCache = controllerDescriptorCache;
 }
Ejemplo n.º 2
0
 public AuthorizationContextCache(ICache cache, IControllerContextCache controllerContextCache, IControllerDescriptorCache controllerDescriptorCache, IRouteDataCache routeDataCache)
 {
     this.cache = cache;
     this.routeDataCache = routeDataCache;
     this.controllerContextCache = controllerContextCache;
     this.controllerDescriptorCache = controllerDescriptorCache;
 }
        public CachedPageRouteDataProvider(IContentRepository contentRepository, IRouteDataCache routeDataCache)
        {
            _contentRepository = contentRepository;
            _routeDataCache    = routeDataCache;

            GetPageList();
        }
Ejemplo n.º 4
0
 public ContentRepository(EZmsContext context, IMapper mapper, IRouteDataCache routeDataCache)
 {
     _context        = context;
     _mapper         = mapper;
     _routeDataCache = routeDataCache;
 }