87 lines
1.9 KiB
C#
87 lines
1.9 KiB
C#
|
|
|||
|
using Ease.Core.Model;
|
|||
|
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data;
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
public class ErRecruitmentByCVSort : AuditTrailBase
|
|||
|
{
|
|||
|
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public ErRecruitmentByCVSort()
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
public int PositionID { get; set; }
|
|||
|
public string PositionName { get; set; }
|
|||
|
public EnumOnBoradStatus OnBoardStatus{ get; set; }
|
|||
|
public string OnBoardStatusString { get; set; }
|
|||
|
public int TotalCV { get; set; }
|
|||
|
public string AssignedDatetime { get; set; }
|
|||
|
public EnumWFCvSortStatus CompleteStatus { get; set; }
|
|||
|
#endregion
|
|||
|
}
|
|||
|
|
|||
|
public class ErCVSortDetails : AuditTrailBase
|
|||
|
{
|
|||
|
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public ErCVSortDetails()
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
public int PositionID { get; set; }
|
|||
|
public string PositionName { get; set; }
|
|||
|
public string CandidateName { get; set; }
|
|||
|
public string Mobile { get; set; }
|
|||
|
public string Email { get; set; }
|
|||
|
public string OnBoardStatusString { get; set; }
|
|||
|
public int CandidateID { get; set; }
|
|||
|
public int CvID { get; set; }
|
|||
|
public int UserCvSortID { get; set; }
|
|||
|
public bool IsCVSelect { get; set; }
|
|||
|
public string Remarks { get; set; }
|
|||
|
#endregion
|
|||
|
}
|
|||
|
|
|||
|
public class ErUserCvSort : AuditTrailBase
|
|||
|
{
|
|||
|
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public ErUserCvSort()
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
public int PositionID { get; set; }
|
|||
|
public int CandidateID { get; set; }
|
|||
|
public bool SelectStatus{ get; set; }
|
|||
|
public int CvID { get; set; }
|
|||
|
public string CandidateName { get; set; }
|
|||
|
public string Mobile { get; set; }
|
|||
|
public string Email { get; set; }
|
|||
|
public string Remarks { get; set; }
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|