44 lines
735 B
C#
44 lines
735 B
C#
|
|
using Ease.Core.Model;
|
|
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace HRM.BO
|
|
{
|
|
public class RecruitementOrg : AuditTrailBase
|
|
{
|
|
|
|
#region Constructor
|
|
|
|
public RecruitementOrg()
|
|
{
|
|
_processID = 0;
|
|
_organizationID = 0;
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
#region Properties
|
|
|
|
private int _processID;
|
|
private int _organizationID;
|
|
|
|
public int ProcessId
|
|
{
|
|
get { return _processID; }
|
|
set { _processID = value; }
|
|
}
|
|
|
|
public int OrganizationId
|
|
{
|
|
get { return _organizationID; }
|
|
set { _organizationID = value; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|