public OperatorOutput(ref IVertex vertex, int thisId) { _operator = (OperatorBase)vertex; _thisId = thisId; }
public OperatorInput(ref IVertex vertex, int thisId, bool isSecondaryInput = false) { _operator = (OperatorBase)vertex; _thisId = thisId; _isSecondaryInput = isSecondaryInput; }