EchoTex_Payroll/HRM.BO/ERecruitment/ErCVReference.cs

36 lines
682 B
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 ErCVReference : AuditTrailBase
{
#region Constructor
public ErCVReference()
{
}
#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
}
}