using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace PBS.WinFrmUI.WE
|
{
|
internal class UtensilSelectViewModel
|
{
|
internal UtensilSelectViewModel(Vmo.WE.UtensilVmo rhs)
|
{
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
this.ParentID = rhs.GroupID;
|
}
|
internal UtensilSelectViewModel(Vmo.WE.UtensilGroupVmo rhs)
|
{
|
this.ID = rhs.ID;
|
this.Name = rhs.Name;
|
}
|
public string Name { get; set; }
|
|
public long ID { get; set; }
|
|
public long ParentID { get; set; }
|
}
|
}
|