private void BaseInit(XbimRampFlightType type)
 {
     _document.RampFlights.Add(this);
     _ifcBuildingElement = _document.Model.Instances.New<IfcRampFlight>();
     _ifcBuildingElement.SetDefiningType(type.IfcTypeProduct, _document.Model);
 }
 internal XbimRampFlight(XbimDocument document, XbimRampFlightType type)
     : base(document)
 {
     BaseInit(type);
 }