Example #1
0
 public IfcPropertyDependencyRelationship(IfcLabel name, IfcText description, IfcProperty dependingProperty, IfcProperty dependantProperty, IfcText expression) : base(name, description)
 {
     DependingProperty = dependingProperty;
     DependantProperty = dependantProperty;
     Expression        = expression;
 }
Example #2
0
        }                                           // optional


        /// <summary>
        /// Construct a IfcPropertyDependencyRelationship with all required attributes.
        /// </summary>
        public IfcPropertyDependencyRelationship(IfcProperty dependingProperty, IfcProperty dependantProperty) : base()
        {
            DependingProperty = dependingProperty;
            DependantProperty = dependantProperty;
        }