43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
|
|
|||
|
using Ease.Core;
|
|||
|
using Ease.Core.Model;
|
|||
|
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data;
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
public class ErCVTraining : AuditTrailBase
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
public ErCVTraining()
|
|||
|
{
|
|||
|
}
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Properties
|
|||
|
public string Name { get; set; }
|
|||
|
public string Description { get; set; }
|
|||
|
public string Country { get; set; }
|
|||
|
public int TrainingTypeID { get; set; }
|
|||
|
public TrainingType TrainingType { get; set; }
|
|||
|
public int NatureOfTrainingID { get; set; }
|
|||
|
public EnumTrainingCompletedFrom TrainingCompletedFrom { get; set; }
|
|||
|
public int InstitutionID { get; set; }
|
|||
|
public string Place { get; set; }
|
|||
|
public string Achievement { get; set;}
|
|||
|
public double Fees { get; set; }
|
|||
|
public double OtherCost { get; set; }
|
|||
|
public DateTime FromDate { get; set; }
|
|||
|
public DateTime ToDate { get; set; }
|
|||
|
public int CVID { get; set; }
|
|||
|
public string Days { get; set; }
|
|||
|
public string Hours { get; set; }
|
|||
|
public int CountryID { get; set; }
|
|||
|
public string InstituteName { get; set; }
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|