62 lines
1.2 KiB
C#
62 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Ease.CoreV35.Model;
|
|
|
|
namespace Payroll.BO
|
|
{
|
|
[Serializable]
|
|
public class SelectedCandidate : AuditTrailBase
|
|
{
|
|
private ID _processID;
|
|
private ID _stepID;
|
|
private ID _candidateID;
|
|
private bool _isEmployee;
|
|
private bool _isSelected;
|
|
|
|
|
|
|
|
public SelectedCandidate()
|
|
{
|
|
_processID = null;
|
|
_stepID = null;
|
|
_candidateID = null;
|
|
_isEmployee = false;
|
|
_isSelected = false;
|
|
|
|
}
|
|
|
|
|
|
public ID ProcessId
|
|
{
|
|
get { return _processID; }
|
|
set { _processID = value; }
|
|
}
|
|
|
|
public ID StepId
|
|
{
|
|
get { return _stepID; }
|
|
set { _stepID = value; }
|
|
}
|
|
|
|
public ID 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; }
|
|
}
|
|
}
|
|
}
|