EchoTex_Payroll/HRM.BO/Basic/PayrollPaymentComponent.cs

22 lines
491 B
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
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<PayrollPaymentComponent> get(int payrolltypeid);
}
}