49 lines
993 B
C#
49 lines
993 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Ease.Core;
|
|
using Ease.Core.Model;
|
|
using System.Data;
|
|
|
|
|
|
|
|
|
|
namespace HRM.BO
|
|
{
|
|
#region Loan Doc
|
|
|
|
|
|
public class LoanDoc : UpdateAuditTrail
|
|
{
|
|
|
|
#region Constructor
|
|
public LoanDoc()
|
|
{
|
|
//_hrDocID = null;
|
|
//_loanID = null;
|
|
//_loanParameterID = null;
|
|
}
|
|
#endregion
|
|
|
|
#region Property
|
|
public int HRDocID { get; set; }
|
|
public int LoanID { get; set; }
|
|
public int LoanParameterID { get; set; }
|
|
#endregion
|
|
|
|
//#region Service Factory ILoanParameterService : ILoanParameterService
|
|
|
|
//internal static ILoanParameterService Service
|
|
//{
|
|
// get { return Services.Factory.CreateService<ILoanParameterService>(typeof(ILoanParameterService)); }
|
|
//}
|
|
//#endregion
|
|
|
|
#region Functions
|
|
|
|
#endregion
|
|
}
|
|
#endregion
|
|
}
|