28 lines
768 B
C#
28 lines
768 B
C#
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
|
|
}
|