EchoTex_Payroll/HRM.BO/Arrear/ArrearProcessDetailItemMonthly.cs

168 lines
3.4 KiB
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using System;
using System.Collections.Generic;
using System.Linq;
namespace HRM.BO
{
public class ArrearProcessDetailItemMonthly : UpdateAuditTrail
{
#region Constructor
public ArrearProcessDetailItemMonthly()
{
_iArrearProcessDetailItemID = 0;
_eItemType = enumPayrollComponentType.Allowance;
_iItemID = 0;
_eSide = EnumArearTranSide.None;
_sDescription = string.Empty;
_dCalculatedAmount = 0.0;
_dChangedAmount = 0.0;
_iSeriialNo = 0;
_dSalaryMonth = DateTime.MinValue;
_isUploaded = false;
}
#endregion
#region Properties
#region ArrearProcessDetailItemID : ID
private int _iArrearProcessDetailItemID;
public int ArrearProcessDetailItemID
{
get { return _iArrearProcessDetailItemID; }
set { _iArrearProcessDetailItemID = value; }
}
#endregion
#region ItemType : EnumArearProcessItemType
private enumPayrollComponentType _eItemType;
public enumPayrollComponentType ItemType
{
get { return _eItemType; }
set { _eItemType = value; }
}
#endregion
#region ItemID : int
private int _iItemID;
public int ItemID
{
get { return _iItemID; }
set { _iItemID = value; }
}
private int _dummyEmpID;
public int DummyEmpID
{
get { return _dummyEmpID; }
set { _dummyEmpID = value; }
}
private int _supportID;
public int SupportID
{
get { return _supportID; }
set { _supportID = value; }
}
#endregion
#region Side : EnumArearTranSide
private EnumArearTranSide _eSide;
public EnumArearTranSide Side
{
get { return _eSide; }
set { _eSide = value; }
}
#endregion
#region Description : string
private string _sDescription;
public string Description
{
get { return _sDescription; }
set { _sDescription = value; }
}
#endregion
#region CalculatedAmount : double
private double _dCalculatedAmount;
public double CalculatedAmount
{
get { return _dCalculatedAmount; }
set { _dCalculatedAmount = value; }
}
#endregion
#region ChangedAmount : double
private double _dChangedAmount;
public double ChangedAmount
{
get { return _dChangedAmount; }
set { _dChangedAmount = value; }
}
#endregion
#region SeriialNo : int
private int _iSeriialNo;
public int SeriialNo
{
get { return _iSeriialNo; }
set { _iSeriialNo = value; }
}
#endregion
#region SalaryMonth : DateTime
private DateTime _dSalaryMonth;
public DateTime SalaryMonth
{
get { return _dSalaryMonth; }
set { _dSalaryMonth = value; }
}
#endregion
#region bool : IsUploaded
private bool _isUploaded;
public bool IsUploaded
{
get { return _isUploaded; }
set { _isUploaded = value; }
}
#endregion
#endregion
}
}