40 lines
739 B
C#
40 lines
739 B
C#
|
using Ease.Core.DataAccess;
|
|||
|
using HRM.BO.Assets;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
#region ClaimTran
|
|||
|
|
|||
|
public class ClaimBalance : BasicBaseObject
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public ClaimBalance()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
public int EmployeeID { get; set; }
|
|||
|
public double Balance { get; set; }
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
public interface IClaimBalaceService
|
|||
|
{
|
|||
|
ClaimBalance Get(int id);
|
|||
|
List<ClaimBalance> Get();
|
|||
|
int Save(ClaimBalance item);
|
|||
|
void Delete(int id);
|
|||
|
ClaimCurrentBalance GetCurrentBalancebyEmployeeId(int employeeId);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|