Exemple #1
0
 public IfcApprovalRelationship(IfcLabel name, IfcText description, IfcApproval relatingApproval, List <IfcApproval> relatedApprovals) : base(name, description)
 {
     RelatingApproval = relatingApproval;
     RelatedApprovals = relatedApprovals;
 }
Exemple #2
0
 public IfcResourceObjectSelect(IfcApproval choice)
 {
     this.choice = choice;
 }
Exemple #3
0
 /// <summary>
 /// Construct a IfcApprovalRelationship with all required attributes.
 /// </summary>
 public IfcApprovalRelationship(IfcApproval relatingApproval, List <IfcApproval> relatedApprovals) : base()
 {
     RelatingApproval = relatingApproval;
     RelatedApprovals = relatedApprovals;
 }
Exemple #4
0
 public IfcRelAssociatesApproval(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, List <IfcDefinitionSelect> relatedObjects, IfcApproval relatingApproval) : base(globalId, ownerHistory, name, description, relatedObjects)
 {
     RelatingApproval = relatingApproval;
 }
Exemple #5
0
 /// <summary>
 /// Construct a IfcRelAssociatesApproval with all required attributes.
 /// </summary>
 public IfcRelAssociatesApproval(IfcGloballyUniqueId globalId, List <IfcDefinitionSelect> relatedObjects, IfcApproval relatingApproval) : base(globalId, relatedObjects)
 {
     RelatingApproval = relatingApproval;
 }
Exemple #6
0
 public IfcResourceApprovalRelationship(IfcLabel name, IfcText description, List <IfcResourceObjectSelect> relatedResourceObjects, IfcApproval relatingApproval) : base(name, description)
 {
     RelatedResourceObjects = relatedResourceObjects;
     RelatingApproval       = relatingApproval;
 }
Exemple #7
0
 /// <summary>
 /// Construct a IfcResourceApprovalRelationship with all required attributes.
 /// </summary>
 public IfcResourceApprovalRelationship(List <IfcResourceObjectSelect> relatedResourceObjects, IfcApproval relatingApproval) : base()
 {
     RelatedResourceObjects = relatedResourceObjects;
     RelatingApproval       = relatingApproval;
 }