EchoTex_Payroll/HRM.BO/Recruitement/CVEducation.cs

45 lines
1.0 KiB
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00

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
}
}