public IfcRelSequence(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcProcess relatingProcess, IfcProcess relatedProcess, IfcLagTime timeLag, IfcSequenceEnum sequenceType, IfcLabel userDefinedSequenceType) : base(globalId, ownerHistory, name, description) { RelatingProcess = relatingProcess; RelatedProcess = relatedProcess; TimeLag = timeLag; SequenceType = sequenceType; UserDefinedSequenceType = userDefinedSequenceType; }
public IfcProcessSelect(IfcProcess choice) { this.choice = choice; }
} // optional /// <summary> /// Construct a IfcRelSequence with all required attributes. /// </summary> public IfcRelSequence(IfcGloballyUniqueId globalId, IfcProcess relatingProcess, IfcProcess relatedProcess) : base(globalId) { RelatingProcess = relatingProcess; RelatedProcess = relatedProcess; }