lixiaojun
2024-10-12 f2333318a31e92f6cbc3a572d8eb9fae9da0f892
WinFrmUI/HStation.WinFrmUI.Xhs.Core/03-simulation/06-simulation/01-matching/03-valve/01-valvesinglematching/ValveSingleMatchingViewModel.cs
@@ -1,15 +1,15 @@
namespace HStation.WinFrmUI.Xhs
namespace HStation.WinFrmUI
{
    public class ValveSingleMatchingViewModel
    {
        public ValveSingleMatchingViewModel(Vmo.PumpSeriesVmo rhs)
        public ValveSingleMatchingViewModel(Vmo.AssetsPumpSeriesVmo rhs)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
            this.IsPump = false;
        }
        public ValveSingleMatchingViewModel(Vmo.PumpGroupVmo rhs)
        public ValveSingleMatchingViewModel(Vmo.AssetsPumpGroupVmo rhs)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
@@ -17,7 +17,7 @@
            this.IsPump = false;
        }
        public ValveSingleMatchingViewModel(Vmo.PumpMainVmo rhs, long GroupID)
        public ValveSingleMatchingViewModel(Vmo.AssetsPumpMainVmo rhs, long GroupID)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;
@@ -25,7 +25,7 @@
            this.IsPump = true;
        }
        public ValveSingleMatchingViewModel(Vmo.PumpMainVmo rhs)
        public ValveSingleMatchingViewModel(Vmo.AssetsPumpMainVmo rhs)
        {
            this.ID = rhs.ID;
            this.Name = rhs.Name;