64 lines
1.3 KiB
C#
64 lines
1.3 KiB
C#
|
|
using Ease.Core.Model;
|
|
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
|
|
namespace HRM.BO
|
|
{
|
|
public class SelectedCandidate : AuditTrailBase
|
|
{
|
|
private int _recruitementID;
|
|
private int _stepID;
|
|
private int _candidateID;
|
|
private bool _isEmployee;
|
|
private bool _isSelected;
|
|
public int cvid { get; set; }
|
|
public int ProcessId { get; set; }
|
|
|
|
|
|
public SelectedCandidate()
|
|
{
|
|
_recruitementID = 0;
|
|
_stepID = 0;
|
|
_candidateID = 0;
|
|
_isEmployee = false;
|
|
_isSelected = false;
|
|
|
|
}
|
|
|
|
|
|
public int RecruitementID
|
|
{
|
|
get { return _recruitementID; }
|
|
set { _recruitementID = value; }
|
|
}
|
|
|
|
public int StepId
|
|
{
|
|
get { return _stepID; }
|
|
set { _stepID = value; }
|
|
}
|
|
|
|
public int CandidateId
|
|
{
|
|
get { return _candidateID; }
|
|
set { _candidateID = value; }
|
|
}
|
|
|
|
public bool IsEmployee
|
|
{
|
|
get { return _isEmployee; }
|
|
set { _isEmployee = value; }
|
|
}
|
|
|
|
public bool IsSelected
|
|
{
|
|
get { return _isSelected; }
|
|
set { _isSelected = value; }
|
|
}
|
|
}
|
|
}
|