EchoTex_Payroll/HRM.BO/Recruitement/CVReference.cs
2024-10-14 10:01:49 +06:00

63 lines
1.6 KiB
C#

using Ease.Core.Model;
using System;
using System.Collections.Generic;
using System.Data;
namespace HRM.BO
{
public class CVReference : AuditTrailBase
{
#region Constructor
public CVReference()
{
}
#endregion
#region Properties
public string Name { get; set; }
public string Occupation { get; set; }
public string Relation { get; set; }
public string Address { get; set; }
public string Email { get; set; }
public string Telephone { get; set; }
public string Mobile { get; set; }
public int CVID { get; set; }
#endregion
}
public class CVTraining : AuditTrailBase
{
#region Constructor
public CVTraining()
{
}
#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; }
#endregion
}
}