45 lines
1.0 KiB
C#
45 lines
1.0 KiB
C#
|
|
using Ease.Core.Model;
|
|
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
namespace HRM.BO
|
|
{
|
|
public class CVEducation : AuditTrailBase
|
|
{
|
|
|
|
#region Constructor
|
|
|
|
public CVEducation()
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
public int DegreeTitleID { get; set; }
|
|
public string DegreeTitle { get; set; }
|
|
public int DisciplineID { get; set; }
|
|
public string Discipline { get; set; }
|
|
public int BoardID { get; set; }
|
|
public string Boar { get; set; }
|
|
public string Name { get; set; }
|
|
public string PassingYear { get; set; }
|
|
public int ResultID { get; set; }
|
|
public string CGPA { get; set; }
|
|
public string OutOF { get; set; }
|
|
public bool IsHighest { get; set; }
|
|
public string InstituteName { get; set; }
|
|
public int CVID { get; set; }
|
|
|
|
public List<Discipline> Disciplines { get; set; }
|
|
public List<EducationLevel> EducationLevels { get; set; }
|
|
#endregion
|
|
}
|
|
}
|