52 lines
996 B
C#
52 lines
996 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 Grades
|
|||
|
|
|||
|
|
|||
|
public class LoanGrades :UpdateAuditTrail
|
|||
|
{
|
|||
|
|
|||
|
#region Constructor
|
|||
|
public LoanGrades()
|
|||
|
{
|
|||
|
//_loanID = null;
|
|||
|
//_loanParameterID = null;
|
|||
|
//_gradeID = null;
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
public int LoanID { get; set; }
|
|||
|
|
|||
|
public int LoanParameterID { get; set; }
|
|||
|
|
|||
|
public int GradeID { 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
|
|||
|
}
|