69 lines
1.3 KiB
C#
69 lines
1.3 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using Ease.CoreV35.Model;
|
|||
|
|
|||
|
namespace Payroll.BO
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class ReferredBy : AuditTrailBase
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public ReferredBy()
|
|||
|
{
|
|||
|
_referredBY = EnumReferredBy.Other;
|
|||
|
_name = String.Empty;
|
|||
|
_otherDetail = String.Empty;
|
|||
|
_cvID = null;
|
|||
|
_employeeNo = String.Empty;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
|
|||
|
private EnumReferredBy _referredBY;
|
|||
|
private string _name;
|
|||
|
private string _otherDetail;
|
|||
|
private ID _cvID;
|
|||
|
private string _employeeNo;
|
|||
|
|
|||
|
|
|||
|
public EnumReferredBy ReferredBY
|
|||
|
{
|
|||
|
get { return _referredBY; }
|
|||
|
set { _referredBY = value; }
|
|||
|
}
|
|||
|
|
|||
|
public string Name
|
|||
|
{
|
|||
|
get { return _name; }
|
|||
|
set { _name = value; }
|
|||
|
}
|
|||
|
|
|||
|
public string OtherDetail
|
|||
|
{
|
|||
|
get { return _otherDetail; }
|
|||
|
set { _otherDetail = value; }
|
|||
|
}
|
|||
|
|
|||
|
public ID CvId
|
|||
|
{
|
|||
|
get { return _cvID; }
|
|||
|
set { _cvID = value; }
|
|||
|
}
|
|||
|
|
|||
|
public string EmployeeNo
|
|||
|
{
|
|||
|
get { return _employeeNo; }
|
|||
|
set { _employeeNo = value; }
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
}
|
|||
|
}
|