/// <summary> /// Construct a IfcRelConnectsPortToElement with all required attributes. /// </summary> public IfcRelConnectsPortToElement(IfcGloballyUniqueId globalId, IfcPort relatingPort, IfcDistributionElement relatedElement) : base(globalId) { RelatingPort = relatingPort; RelatedElement = relatedElement; }
public IfcRelConnectsPortToElement(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcPort relatingPort, IfcDistributionElement relatedElement) : base(globalId, ownerHistory, name, description) { RelatingPort = relatingPort; RelatedElement = relatedElement; }
} // optional /// <summary> /// Construct a IfcRelConnectsPorts with all required attributes. /// </summary> public IfcRelConnectsPorts(IfcGloballyUniqueId globalId, IfcPort relatingPort, IfcPort relatedPort) : base(globalId) { RelatingPort = relatingPort; RelatedPort = relatedPort; }