28 lines
511 B
C#
28 lines
511 B
C#
|
|
|||
|
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
|
|||
|
}
|
|||
|
}
|