Exemplo n.º 1
0
        public Antecedent OR(params Judgment[] judgments)
        {
            JudgmentLine line = new JudgmentLine(LogicalConnection.OR, judgments);

            antecedent.Add(line);

            return(this);
        }
Exemplo n.º 2
0
        public Antecedent AND(Judgment judgment)
        {
            JudgmentLine line = new JudgmentLine(LogicalConnection.AND, new List <Judgment> {
                judgment
            });

            antecedent.Add(line);

            return(this);
        }