38 lines
832 B
C#
38 lines
832 B
C#
|
|
|||
|
using Ease.Core.Model;
|
|||
|
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data;
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
public class ErCVExperience : AuditTrailBase
|
|||
|
{
|
|||
|
#region Constructor
|
|||
|
|
|||
|
|
|||
|
public ErCVExperience()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#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 string Mobile { get; set; }
|
|||
|
public int CVID { get; set; }
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|