44 lines
802 B
C#
44 lines
802 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using Ease.CoreV35.Model;
|
|||
|
|
|||
|
namespace Payroll.BO
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class RecruitementNode : AuditTrailBase
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
|
|||
|
|
|||
|
public RecruitementNode()
|
|||
|
{
|
|||
|
_processID = null;
|
|||
|
_recruitementNodeID = null;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
|
|||
|
private ID _processID;
|
|||
|
private ID _recruitementNodeID;
|
|||
|
|
|||
|
|
|||
|
public ID ProcessId
|
|||
|
{
|
|||
|
get { return _processID; }
|
|||
|
set { _processID = value; }
|
|||
|
}
|
|||
|
|
|||
|
public ID RecruitementNodeId
|
|||
|
{
|
|||
|
get { return _recruitementNodeID; }
|
|||
|
set { _recruitementNodeID = value; }
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|