| | |
| | | using HStation.BLL; |
| | | |
| | | namespace HStation.WinFrmUI |
| | | namespace HStation.WinFrmUI |
| | | { |
| | | /// <summary> |
| | | /// 创建方案 view model |
| | |
| | | this.ProjectSite = projectSite; |
| | | this.HydroInfo = hydroInfo; |
| | | this.AllSchemeList = allSchemeList; |
| | | this.allChangeRecordList = new List<XhsSchemeChangeRecordViewModel>(); |
| | | } |
| | | |
| | | |
| | |
| | | |
| | | #region 基本信息 |
| | | |
| | | /// <summary> |
| | | /// 当前方案 |
| | | /// </summary> |
| | | public XhsSchemeVmo Scheme { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 所有可见视图列表 |
| | | /// </summary> |
| | | public List<HydroVisualViewModel> AllVisualViewModelList { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 变更记录列表 |
| | | /// </summary> |
| | | public List<XhsSchemeChangeRecordViewModel> allChangeRecordList { get; set; } |
| | | |
| | | #endregion |
| | | |