Exemplo n.º 1
0
 public RuleLayer(RuleLayerConfiguration parameters, IEnumerable <Rule> rules) : this(parameters)
 {
     rules.ForEach(r => Add(r));
 }
Exemplo n.º 2
0
 public RuleLayer(RuleLayerConfiguration configuration)
 {
     Rules = new List <Rule>(configuration.MaxNumberOfRules);
     LayerConfiguration = configuration;
 }