45 lines
943 B
C#
45 lines
943 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Ease.CoreV35;
|
|
using HRM.BO;
|
|
|
|
namespace Payroll.BO
|
|
{
|
|
public class ClaimDisbursement : BasicBaseObject
|
|
{
|
|
#region Constructor
|
|
|
|
public ClaimDisbursement()
|
|
{
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
public int UserID { get; set; }
|
|
public int LocationID { get; set; }
|
|
public string LoginID { get; set; }
|
|
public string LocationCode { get; set; }
|
|
public string LocationName { get; set; }
|
|
#endregion
|
|
}
|
|
|
|
|
|
#region IClaimRule Service
|
|
|
|
public interface IClaimDisbursementService
|
|
{
|
|
ClaimDisbursement Get(int id);
|
|
List<ClaimDisbursement> Get();
|
|
List<ClaimDisbursement> GetUserLocation();
|
|
int Save(ClaimDisbursement item);
|
|
void Delete(int id);
|
|
}
|
|
|
|
#endregion
|
|
}
|