namespace HRM.BO { public class PayScaleAllowance : BasicBaseObject { private int _AllowanceID = 0; private string _Description = string.Empty; public int AllowanceID { get { return _AllowanceID; } set { _AllowanceID = value; } } public string Description { get { return _Description; } set { _Description = value; } } } }