37 lines
786 B
C#
37 lines
786 B
C#
|
|
using Ease.Core.Model;
|
|
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
|
|
namespace HRM.BO
|
|
{
|
|
public class CVExperience : AuditTrailBase
|
|
{
|
|
#region Constructor
|
|
|
|
|
|
public CVExperience ()
|
|
{
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
public string Employeer { get; set; }
|
|
public string ContactPerson { get; set; }
|
|
public string Address { get; set; }
|
|
public string Industry { get; set; }
|
|
public string Designation { get; set; }
|
|
public DateTime FromDate { get; set; }
|
|
public DateTime ToDate { get; set; }
|
|
public string Telephone { get; set; }
|
|
public string RoleDefination { get; set; }
|
|
public int CVID { get; set; }
|
|
#endregion
|
|
}
|
|
}
|