using Yw.Vmo;
|
|
namespace HStation.WinFrmUI
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class SimulationWorkingHelper
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public SimulationWorkingHelper()
|
{
|
|
}
|
|
/// <summary>
|
/// 工况
|
/// </summary>
|
public HydroWorkingVmo Working
|
{
|
get { return _working; }
|
private set { _working = value; }
|
}
|
private HydroWorkingVmo _working = null;
|
|
/// <summary>
|
/// 检查结果
|
/// </summary>
|
public HydroCheckResult CheckResult
|
{
|
get { return _checkResult; }
|
private set { _checkResult = value; }
|
}
|
private HydroCheckResult _checkResult = null;
|
|
/// <summary>
|
/// 计算结果
|
/// </summary>
|
public HydroCalcuResult CalcuResult
|
{
|
get { return _calcuResult; }
|
private set { _calcuResult = value; }
|
}
|
private HydroCalcuResult _calcuResult = null;
|
|
/// <summary>
|
/// 初始化数据
|
/// </summary>
|
public void InitialData(HydroWorkingVmo working, HydroCheckResult checkResult, HydroCalcuResult calcuResult)
|
{
|
this.Working = working;
|
this.CheckResult = checkResult;
|
this.CalcuResult = calcuResult;
|
}
|
|
}
|
}
|