public IfcInventory(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcInventoryTypeEnum predefinedType, IfcActorSelect jurisdiction, List <IfcPerson> responsiblePersons, IfcDate lastUpdateDate, IfcCostValue currentValue, IfcCostValue originalValue) : base(globalId, ownerHistory, name, description, objectType) { PredefinedType = predefinedType; Jurisdiction = jurisdiction; ResponsiblePersons = responsiblePersons; LastUpdateDate = lastUpdateDate; CurrentValue = currentValue; OriginalValue = originalValue; }
public IfcAsset(IfcGloballyUniqueId globalId, IfcOwnerHistory ownerHistory, IfcLabel name, IfcText description, IfcLabel objectType, IfcIdentifier identification, IfcCostValue originalValue, IfcCostValue currentValue, IfcCostValue totalReplacementCost, IfcActorSelect owner, IfcActorSelect user, IfcPerson responsiblePerson, IfcDate incorporationDate, IfcCostValue depreciatedValue) : base(globalId, ownerHistory, name, description, objectType) { Identification = identification; OriginalValue = originalValue; CurrentValue = currentValue; TotalReplacementCost = totalReplacementCost; Owner = owner; User = user; ResponsiblePerson = responsiblePerson; IncorporationDate = incorporationDate; DepreciatedValue = depreciatedValue; }