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