Exemplo n.º 1
0
        public FeatureStateBaseHolder(FeatureStateBaseHolder fs, ApplyFeature applyFeature)
        {
            _applyFeature = applyFeature;

            if (fs != null)
            {
                FeatureUpdateHandler = fs.FeatureUpdateHandler;
            }
        }
Exemplo n.º 2
0
 public FeatureHubRepository(ApplyFeature applyFeature)
 {
     _applyFeature = applyFeature;
 }
Exemplo n.º 3
0
 public FeatureHubRepository()
 {
     _applyFeature = new ApplyFeature(new PercentageMurmur3Calculator(), new MatcherRegistry());
 }