EchoTex_Payroll/HRM.BO/Attendance/PayrollComponentList.cs

28 lines
768 B
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using System.Collections.Generic;
namespace HRM.BO
{
public class PayrollComponentList
{
public string Code { get; set; }
public int PKID { get; set; }
public string Name { get; set; }
public enumPayrollComponentType ComponentType { get; set; }
public int ItemID { get; set; }
public PayrollComponentList()
{
}
}
#region IPayrollComponentList Service
public interface IPayrollComponentListService
{
List<PayrollComponentList> Get(int payrollTypeId);
List<PayrollComponentList> Get(List<enumPayrollComponentType> componentTypes, int payrollTypeId);
List<PayrollComponentList> ConstantItemsForSalary(int payrollTypeId);
}
#endregion
}