using Ease.Core.Model; using System; using System.Collections.Generic; using System.Data; namespace HRM.BO { public class Experience : AuditTrailBase { #region Constructor public Experience () { _employer = String.Empty; _contactPerson = String.Empty; _roleDefination = String.Empty; _contactNo = String.Empty; _fromDate = DateTime.MinValue; _toDate = DateTime.MinValue; _cvID = 0; } #endregion #region Properties private string _employer; private string _contactPerson; private string _roleDefination; private string _contactNo; private DateTime _fromDate; private DateTime _toDate; private int _cvID; public string Employer { get { return _employer; } set { _employer = value; } } public string ContactPerson { get { return _contactPerson; } set { _contactPerson = value; } } public string RoleDefination { get { return _roleDefination; } set { _roleDefination = value; } } public string ContactNo { get { return _contactNo; } set { _contactNo = value; } } public DateTime FromDate { get { return _fromDate; } set { _fromDate = value; } } public DateTime ToDate { get { return _toDate; } set { _toDate = value; } } public int CvId { get { return _cvID; } set { _cvID = value; } } #endregion } }