CEL_Payroll/Payroll.BO/Recruitement/RecruitementOrg.cs

43 lines
779 B
C#
Raw Normal View History

2024-09-17 14:30:13 +06:00
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
}
}