public CacheInvalidatorEvent(
     IInterceptCache cache,
     IFeatureInfoService featureInfoService)
 {
     _featureInfoService = featureInfoService;
     _cache = cache;
 }
 public FeatureApiController(
     IFeatureInfoService featureInfoService,
     IFeatureActionService featureActionService)
 {
     _featureInfoService   = featureInfoService;
     _featureActionService = featureActionService;
 }
Пример #3
0
 public HomeController(
     TestFeatures.ITestFeature testFeature,
     IFeatureActionService featureService,
     IFeatureInfoService featureInfoService)
 {
     _featureInfoService = featureInfoService;
     _featureService     = featureService;
     _testFeature        = testFeature;
 }
Пример #4
0
 public FeatureDescriptorDispatcher(IFeatureInfoService featureInfoService)
 {
     _featureInfoService = featureInfoService;
 }