43 lines
829 B
C#
43 lines
829 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Ease.CoreV35;
|
|
using Ease.CoreV35.Model;
|
|
using Ease.CoreV35.Caching;
|
|
using System.Data.Linq.Mapping;
|
|
|
|
namespace Payroll.BO
|
|
{
|
|
[Serializable]
|
|
public class PayScaleAllowance : BasicBaseObject
|
|
{
|
|
private ID _AllowanceID = null;
|
|
private string _Description = string.Empty;
|
|
|
|
public ID AllowanceID
|
|
{
|
|
get
|
|
{
|
|
return _AllowanceID;
|
|
}
|
|
set
|
|
{
|
|
_AllowanceID = value;
|
|
}
|
|
}
|
|
|
|
public string Description
|
|
{
|
|
get
|
|
{
|
|
return _Description;
|
|
}
|
|
set
|
|
{
|
|
_Description = value;
|
|
}
|
|
}
|
|
}
|
|
}
|