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 Get(int payrollTypeId); List Get(List componentTypes, int payrollTypeId); List ConstantItemsForSalary(int payrollTypeId); } #endregion }