52 lines
927 B
C#
52 lines
927 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using Ease.CoreV35.Model;
|
|||
|
|
|||
|
namespace Payroll.BO
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class BoardMember : AuditTrailBase
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public BoardMember()
|
|||
|
{
|
|||
|
_processID = null;
|
|||
|
_stepID = null;
|
|||
|
_employeeID = null;
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
|
|||
|
#region Properties
|
|||
|
|
|||
|
private ID _processID;
|
|||
|
private ID _stepID;
|
|||
|
private ID _employeeID;
|
|||
|
|
|||
|
public ID ProcessId
|
|||
|
{
|
|||
|
get { return _processID; }
|
|||
|
set { _processID = value; }
|
|||
|
}
|
|||
|
|
|||
|
public ID StepId
|
|||
|
{
|
|||
|
get { return _stepID; }
|
|||
|
set { _stepID = value; }
|
|||
|
}
|
|||
|
|
|||
|
public ID EmployeeId
|
|||
|
{
|
|||
|
get { return _employeeID; }
|
|||
|
set { _employeeID = value; }
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|