33 lines
559 B
C#
33 lines
559 B
C#
using Ease.Core.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
|
|
namespace HRM.BO
|
|
{
|
|
#region Remainder
|
|
|
|
public class Remainder : BasicBaseObject
|
|
{
|
|
|
|
#region Properties
|
|
|
|
public int EmployeeId { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region IRemainder Service
|
|
|
|
public interface IRemainderService
|
|
{
|
|
List<Remainder> Get(int EmployeeId);
|
|
int Save(Remainder item);
|
|
void Delete(int id);
|
|
}
|
|
|
|
#endregion
|
|
} |