duheng
2024-11-19 2d0e557f3a406e7c144677f04ec6fce5e5590a15
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
namespace HStation.WinFrmUI
{
    public class PumpAccountViewModel
    {
        public PumpAccountViewModel()
        { }
 
        public PumpAccountViewModel(Vmo.AssetsPackagePumpMappingVmo rhs)
        {
            this.ID = rhs.ID;
            this.PumpID = rhs.PumpMainID;
        }
 
        public PumpAccountViewModel(long PumpID, int Count)
        {
            this.PumpID = PumpID;
            this.UserCount = Count;
        }
 
        public long ID { get; set; }
 
        public long PumpID { get; set; }
 
        public int UserCount { get; set; }
    }
}