using HRM.BO; namespace HRM.UI.MODELS { public class EmployeeTModel : AuditTrailBase { public EmployeeTModel() { EmployeeNO = string.Empty; Name = string.Empty; Designation = string.Empty; Department = string.Empty; Grade = string.Empty; } public int EmployeeID { get; set; } public string EmployeeNO { get; set; } public string Name { get; set; } public string Designation { get; set; } public string Department { get; set; } public string Grade { get; set; } } }