Exemple #1
0
 public BlogController(
     IBlogService blog,
     IOutputCachingService cache
     )
 {
     _blog     = blog;
     _settings = _blog.Settings;
     _cache    = cache;
 }
 public OutputCacheMiddleware(RequestDelegate next, IOutputCachingService cache, OutputCacheOptions options)
 {
     _next    = next;
     _cache   = cache;
     _options = options;
 }