Пример #1
0
 public IfcApprovalRelationship(IfcApproval __RelatedApproval, IfcApproval __RelatingApproval, IfcText?__Description, IfcLabel __Name)
 {
     this._RelatedApproval  = __RelatedApproval;
     this._RelatingApproval = __RelatingApproval;
     this._Description      = __Description;
     this._Name             = __Name;
 }
 public IfcResourceApprovalRelationship(IfcLabel?__Name, IfcText?__Description, IfcResourceObjectSelect[] __RelatedResourceObjects, IfcApproval __RelatingApproval)
     : base(__Name, __Description)
 {
     this._RelatedResourceObjects = new HashSet <IfcResourceObjectSelect>(__RelatedResourceObjects);
     this._RelatingApproval       = __RelatingApproval;
 }
 public IfcApprovalActorRelationship(IfcActorSelect __Actor, IfcApproval __Approval, IfcActorRole __Role)
 {
     this._Actor = __Actor;
     this._Approval = __Approval;
     this._Role = __Role;
 }
Пример #4
0
 public IfcApprovalPropertyRelationship(IfcProperty[] __ApprovedProperties, IfcApproval __Approval)
 {
     this._ApprovedProperties = new HashSet <IfcProperty>(__ApprovedProperties);
     this._Approval           = __Approval;
 }
Пример #5
0
 public IfcApprovalRelationship(IfcLabel?__Name, IfcText?__Description, IfcApproval __RelatingApproval, IfcApproval[] __RelatedApprovals)
     : base(__Name, __Description)
 {
     this._RelatingApproval = __RelatingApproval;
     this._RelatedApprovals = new HashSet <IfcApproval>(__RelatedApprovals);
 }