public WeatherForecastController(ILogger <WeatherForecastController> logger, ITestCache testCache)
 {
     _logger    = logger;
     _testCache = testCache;
 }
Esempio n. 2
0
 //TODO in inspector
 public void SetTest(ITestCache testCache)
 {
     _test.SetValue(testCache);
 }
Esempio n. 3
0
        public async Task Invoke(HttpContext httpContext, ITestCache cache)
        {
            await cache.BootstrapCache();

            await _next(httpContext);
        }