コード例 #1
0
 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;
 }
コード例 #2
0
ファイル: IfcAsset.g.cs プロジェクト: vdubya/IFC-gen
 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;
 }