using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DrugManagement.Model { public class DosageKind { private int id; private string name; private string helpcode; private int isvalid; private string operatorno; private string operatorname; private DateTime operatedate; /// /// /// public int Id { set { id = value; } get { return id; } } /// /// /// public string Name { set { name = value; } get { return name; } } /// /// /// public string HelpCode { set { helpcode = value; } get { return helpcode; } } /// /// /// public int IsValid { set { isvalid = value; } get { return isvalid; } } /// /// /// public string OperatorNo { set { operatorno = value; } get { return operatorno; } } /// /// /// public string OperatorName { set { operatorname = value; } get { return operatorname; } } /// /// /// public DateTime OperateDate { set { operatedate = value; } get { return operatedate; } } } }