namespace HStation.WinFrmUI.Xhs
|
{
|
public class PumpMainChoieViewModel
|
{
|
public PumpMainChoieViewModel(Vmo.PumpSeries rhs)
|
{
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.IsPump = false;
|
}
|
|
public PumpMainChoieViewModel(Vmo.PumpGroup rhs)
|
{
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.ParentID = rhs.PumpSeriesID;
|
this.IsPump = false;
|
}
|
|
public PumpMainChoieViewModel(Vmo.PumpMain rhs, long GroupID)
|
{
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.ParentID = GroupID;
|
this.IsPump = true;
|
}
|
|
public PumpMainChoieViewModel(Vmo.PumpMain rhs )
|
{
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.ParentID = rhs.PumpSeriesID;
|
this.IsPump = true;
|
}
|
|
public long ID { get; set; }
|
public long ParentID { get; set; }
|
public string Name { get; set; }
|
public bool IsPump { get; set; }
|
}
|
}
|