public CacheInvalidatorEvent(
     IInterceptCache cache,
     IFeatureInfoService featureInfoService)
 {
     _featureInfoService = featureInfoService;
     _cache = cache;
 }
 public FeatureApiController(
     IFeatureInfoService featureInfoService,
     IFeatureActionService featureActionService)
 {
     _featureInfoService   = featureInfoService;
     _featureActionService = featureActionService;
 }
Esempio n. 3
0
 public HomeController(
     TestFeatures.ITestFeature testFeature,
     IFeatureActionService featureService,
     IFeatureInfoService featureInfoService)
 {
     _featureInfoService = featureInfoService;
     _featureService     = featureService;
     _testFeature        = testFeature;
 }
Esempio n. 4
0
 public FeatureDescriptorDispatcher(IFeatureInfoService featureInfoService)
 {
     _featureInfoService = featureInfoService;
 }