コード例 #1
0
 public CacheInvalidatorEvent(
     IInterceptCache cache,
     IFeatureInfoService featureInfoService)
 {
     _featureInfoService = featureInfoService;
     _cache = cache;
 }
コード例 #2
0
ファイル: SwitchBus.cs プロジェクト: danielglennross/Switch
 public SwitchBus(IIndex <string, IEnumerable <IFeature> > features, IFeatureActionService featureService, IInterceptCache cache)
 {
     _cache          = cache;
     _featureService = featureService;
     _features       = features;
 }
コード例 #3
0
 public EnumerableInterceptor(IFeatureActionService featureService, IInterceptCache cache)
 {
     _cache          = cache;
     _featureService = featureService;
 }