| | |
| | | this.Junctions = new List<RevitJunction>(); |
| | | this.Nozzles = new List<RevitNozzle>(); |
| | | this.Hydrants = new List<RevitHydrant>(); |
| | | this.Meters = new List<RevitMeter>(); |
| | | this.Flowmeters = new List<RevitFlowmeter>(); |
| | | this.Pressmeters = new List<RevitPressmeter>(); |
| | | this.Elbows = new List<RevitElbow>(); |
| | |
| | | this.Valves = new List<RevitValve>(); |
| | | this.Pipes = new List<RevitPipe>(); |
| | | this.Translations = new List<RevitTranslation>(); |
| | | this.Exchangers = new List<RevitExchanger>(); |
| | | |
| | | this.Decorators = new List<RevitDecorator>(); |
| | | } |
| | |
| | | this.Junctions = rhs.Junctions; |
| | | this.Nozzles = rhs.Nozzles; |
| | | this.Hydrants = rhs.Hydrants; |
| | | this.Meters = rhs.Meters; |
| | | this.Flowmeters = rhs.Flowmeters; |
| | | this.Pressmeters = rhs.Pressmeters; |
| | | this.Elbows = rhs.Elbows; |
| | |
| | | this.Valves = rhs.Valves; |
| | | this.Pipes = rhs.Pipes; |
| | | this.Translations = rhs.Translations; |
| | | this.Exchangers = rhs.Exchangers; |
| | | |
| | | this.Decorators = rhs.Decorators; |
| | | } |
| | |
| | | public List<RevitBlunthead> Bluntheads { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 水表 |
| | | /// </summary> |
| | | public List<RevitMeter> Meters { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 流量计列表 |
| | | /// </summary> |
| | | public List<RevitFlowmeter> Flowmeters { get; set; } |
| | |
| | | /// 压力表列表 |
| | | /// </summary> |
| | | public List<RevitPressmeter> Pressmeters { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 换热器列表 |
| | | /// </summary> |
| | | public List<RevitExchanger> Exchangers { get; set; } |
| | | |
| | | #endregion |
| | | |
| | |
| | | /// </summary> |
| | | public List<RevitTranslation> Translations { get; set; } |
| | | |
| | | |
| | | |
| | | #endregion |
| | | |
| | | #region 装饰件 |