Exemplo n.º 1
0
 public void EvaluateOtherResult(T instance)
 {
     if (onOtherResult != null)
     {
         onOtherResult.Evaluate(instance);
     }
 }
Exemplo n.º 2
0
 internal override void Evaluate(T instance)
 {
     if (decisionNode != null)
     {
         decisionNode.Evaluate(instance);
     }
     if (actionNode != null)
     {
         actionNode.Evaluate(instance);
     }
 }