80 lines
1.6 KiB
C#
80 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Ease.CoreV35.Model;
|
|
|
|
namespace Payroll.BO
|
|
{
|
|
[Serializable]
|
|
public class MemberWiseMark : AuditTrailBase
|
|
{
|
|
|
|
public MemberWiseMark()
|
|
{
|
|
_processID = null;
|
|
_stepID = null;
|
|
_employeeID = null;
|
|
_candidateID = null;
|
|
_marks = 0.0;
|
|
_isSelected = false;
|
|
_isEmployee = false;
|
|
}
|
|
|
|
|
|
#region Properties
|
|
|
|
private ID _processID;
|
|
private ID _stepID;
|
|
private ID _employeeID;
|
|
private ID _candidateID;
|
|
private double _marks;
|
|
private bool _isSelected;
|
|
private bool _isEmployee;
|
|
|
|
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; }
|
|
}
|
|
|
|
public ID CandidateId
|
|
{
|
|
get { return _candidateID; }
|
|
set { _candidateID = value; }
|
|
}
|
|
|
|
public double Marks
|
|
{
|
|
get { return _marks; }
|
|
set { _marks = value; }
|
|
}
|
|
|
|
public bool IsSelected
|
|
{
|
|
get { return _isSelected; }
|
|
set { _isSelected = value; }
|
|
}
|
|
|
|
public bool IsEmployee
|
|
{
|
|
get { return _isEmployee; }
|
|
set { _isEmployee = value; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|