예제 #1
0
        protected override IEnumerable <Person> Execute(SimpleRuleExecutionContext <Person> context)
        {
            context.Input.UserData.IsPregnant = false;
            context.Input.Value.Age++;

            yield break;
        }
예제 #2
0
 protected abstract IEnumerable <T> Execute(SimpleRuleExecutionContext <T> context);