namespace HStation.WinFrmUI { /// /// 创建方案 view model /// public class CreateXhsSchemeViewModel { /// /// /// public CreateXhsSchemeViewModel() { } /// /// /// public CreateXhsSchemeViewModel ( XhsProjectVmo project, XhsProjectSiteVmo projectSite, Yw.Model.HydroModelInfo hydroInfo, List allSchemeList ) { this.Project = project; this.ProjectSite = projectSite; this.HydroInfo = hydroInfo; this.AllSchemeList = allSchemeList; this.allChangeRecordList = new List(); } #region 初始化 /// /// 项目 /// public XhsProjectVmo Project { get; set; } /// /// 项目站 /// public XhsProjectSiteVmo ProjectSite { get; set; } /// /// 水力信息 /// public Yw.Model.HydroModelInfo HydroInfo { get; set; } /// /// 所有方案列表 /// public List AllSchemeList { get; set; } #endregion #region 基本信息 /// /// 当前方案 /// public XhsSchemeVmo Scheme { get; set; } /// /// 所有可见视图列表 /// public List AllVisualViewModelList { get; set; } /// /// 变更记录列表 /// public List allChangeRecordList { get; set; } #endregion } }