namespace HStation.WinFrmUI
|
{
|
public class CurrentPartMainViewModel : PumpPartMainDto
|
{
|
public CurrentPartMainViewModel()
|
{
|
}
|
|
public CurrentPartMainViewModel(PumpPartMainDto rhs) : base()
|
{
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.NO = rhs.NO;
|
this.Code = rhs.Code;
|
this.SeriesID = rhs.SeriesID;
|
}
|
|
public void Reset(UpdatePumpPartMainDto rhs)
|
{
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.NO = rhs.NO;
|
this.Code = rhs.Code;
|
this.SeriesID = rhs.SeriesID;
|
}
|
}
|
}
|