EchoTex_Payroll/HRM.BO/Recruitement/SelectedCandidate.cs

64 lines
1.3 KiB
C#
Raw 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 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; }
}
}
}