lixiaojun
2024-10-21 24ec8c3cf6e75efdcb5f12d73ada86b53c677959
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
namespace Yw.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public class HydroBluntheadViewModel : HydroCouplingViewModel
    {
        /// <summary>
        /// 
        /// </summary>
        public HydroBluntheadViewModel() : base() { }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroBluntheadViewModel(Yw.Model.HydroBluntheadInfo rhs) : base(rhs)
        {
            this.Vmo = rhs;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public HydroBluntheadViewModel(Yw.Model.HydroBluntheadInfo rhs, HydroCalcuNodeResult calcuResult) : base(rhs, calcuResult)
        {
            this.Vmo = rhs;
        }
 
 
        /// <summary>
        /// 
        /// </summary>
        public new Yw.Model.HydroBluntheadInfo Vmo { get; set; }
 
    }
}