public IfElseLogicStatement(LogicExpression condition, LogicStatement statement, LogicStatement elseStatement) { this.Condition = condition; this.Statement = statement; this.ElseStatement = elseStatement; }
public WhileLogicStatement(LogicExpression condition, LogicStatement statement) { this.Condition = condition; this.Statement = statement; }