62 lines
1.1 KiB
C#
62 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Ease.CoreV35.Model;
|
|
|
|
namespace Payroll.BO
|
|
{
|
|
[Serializable]
|
|
public class CVOrg : AuditTrailBase
|
|
{
|
|
|
|
#region Constructor
|
|
|
|
public CVOrg()
|
|
{
|
|
_CvID = null;
|
|
_DesignationID = null;
|
|
_organizationID = null;
|
|
_CVOrgType = EnumCVOrgType.None;
|
|
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
#region Properties
|
|
|
|
private ID _CvID;
|
|
private ID _organizationID;
|
|
private ID _DesignationID;
|
|
private EnumCVOrgType _CVOrgType;
|
|
|
|
public ID CvID
|
|
{
|
|
get { return _CvID; }
|
|
set { _CvID = value; }
|
|
}
|
|
|
|
public ID OrganizationId
|
|
{
|
|
get { return _organizationID; }
|
|
set { _organizationID = value; }
|
|
}
|
|
|
|
public ID DesignationID
|
|
{
|
|
get { return _DesignationID; }
|
|
set { _DesignationID = value; }
|
|
}
|
|
|
|
public EnumCVOrgType CVOrgType
|
|
{
|
|
get { return _CVOrgType; }
|
|
set { _CVOrgType = value; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|