EchoTex_Payroll/HRM.BO/Recruitement/CVSort.cs

28 lines
511 B
C#
Raw Permalink Normal View History

2024-10-14 10:01:49 +06:00

using Ease.Core.Model;
using System;
using System.Collections.Generic;
using System.Data;
namespace HRM.BO
{
public class CVSort : AuditTrailBase
{
#region Constructor
public CVSort()
{
}
#endregion
#region Properties
public int EmployeeID { get; set; }
public int RequisitionID { get; set; }
public DateTime AssignDateTime { get; set; }
public EnumWFCvSortStatus WfStatus { get; set; }
#endregion
}
}