using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HRM.BO { public class PayrollPaymentComponent { public int id { get; set; } public string name { get; set; } public int itemID { get; set; } public enumPayrollComponentType type { get; set; } } public interface IPayrollPaymentComponent { List get(int payrolltypeid); } }