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