67 lines
1.3 KiB
C#
67 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Ease.Core;
|
|
using Ease.Core.Model;
|
|
using System.Data;
|
|
|
|
|
|
|
|
namespace HRM.BO
|
|
{
|
|
#region LeaveParameterDetail
|
|
|
|
|
|
public class LeaveParameterDetail :UpdateAuditTrail
|
|
{
|
|
|
|
|
|
#region Constructor
|
|
public LeaveParameterDetail()
|
|
{
|
|
//_nLeaveParamId = 0;
|
|
//_nMaxDays = 0.0;
|
|
//_nMaxGrndDays = 0.0;
|
|
//_nMaxCF = 0.0;
|
|
//_nMaxEncash = 0.0;
|
|
//_nMaxEncashMonth = 0.0;
|
|
//_nYear = 0;
|
|
}
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
public void SetObjectID(int IdValue)
|
|
{
|
|
this.SetID(IdValue);
|
|
}
|
|
|
|
public long LeaveParamId { get; set; }
|
|
public double MaxDays { get; set; }
|
|
public double MaxGrndDays { get; set; }
|
|
public double MaxCF { get; set; }
|
|
public double MaxEncash { get; set; }
|
|
|
|
public int Year { get; set; }
|
|
//public int EligibleMonth { get; set; }
|
|
//public int MonthPassed { get; set; }
|
|
//public double MaxEncashMonth { get; set; }
|
|
#endregion
|
|
|
|
#region Functions
|
|
|
|
#endregion
|
|
|
|
}
|
|
#endregion
|
|
|
|
|
|
|
|
#region ILeaveParameter Service
|
|
public interface ILeaveParameterDetailService
|
|
{
|
|
}
|
|
#endregion
|
|
|
|
} |