22 lines
491 B
C#
22 lines
491 B
C#
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);
|
|
|
|
}
|
|
}
|