36 lines
682 B
C#
36 lines
682 B
C#
|
|
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
|
|
}
|
|
}
|