142 lines
3.1 KiB
C#
142 lines
3.1 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using Ease.CoreV35;
|
|||
|
using Ease.CoreV35.Model;
|
|||
|
using Ease.CoreV35.Caching;
|
|||
|
using System.Data.Linq.Mapping;
|
|||
|
using System.Data;
|
|||
|
|
|||
|
namespace Payroll.BO
|
|||
|
{
|
|||
|
#region OrganogramJobDesc
|
|||
|
[Serializable]
|
|||
|
public class OrganogramJobDesc : AuditTrailBase
|
|||
|
{
|
|||
|
#region Cache Store
|
|||
|
|
|||
|
private static Cache _cache = new Cache(typeof(OrganogramJobDesc));
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public OrganogramJobDesc()
|
|||
|
{
|
|||
|
_organogramID = null;
|
|||
|
_nodeID = null;
|
|||
|
_education = string.Empty;
|
|||
|
_education = string.Empty;
|
|||
|
_education = string.Empty;
|
|||
|
_education = string.Empty;
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Property
|
|||
|
|
|||
|
#region OrganogramID : ID
|
|||
|
|
|||
|
private ID _organogramID;
|
|||
|
public ID OrganogramID
|
|||
|
{
|
|||
|
get { return _organogramID; }
|
|||
|
set
|
|||
|
{
|
|||
|
base.OnPropertyChange<ID>("organogramID", _organogramID, value);
|
|||
|
_organogramID = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region nodeID : ID
|
|||
|
|
|||
|
private ID _nodeID;
|
|||
|
public ID NodeID
|
|||
|
{
|
|||
|
get { return _nodeID; }
|
|||
|
set
|
|||
|
{
|
|||
|
base.OnPropertyChange<ID>("nodeID", _nodeID, value);
|
|||
|
_nodeID = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region purpose : string
|
|||
|
|
|||
|
private string _purpose;
|
|||
|
public string Purpose
|
|||
|
{
|
|||
|
get { return _education; }
|
|||
|
set
|
|||
|
{
|
|||
|
base.OnPropertyChange<string>("purpose", _education, value);
|
|||
|
_education = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region jobSummery : string
|
|||
|
|
|||
|
private string _jobSummery;
|
|||
|
public string JobSummery
|
|||
|
{
|
|||
|
get { return _education; }
|
|||
|
set
|
|||
|
{
|
|||
|
base.OnPropertyChange<string>("jobSummery", _education, value);
|
|||
|
_education = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region experience : string
|
|||
|
|
|||
|
private string _experience;
|
|||
|
public string Experience
|
|||
|
{
|
|||
|
get { return _education; }
|
|||
|
set
|
|||
|
{
|
|||
|
base.OnPropertyChange<string>("experience", _education, value);
|
|||
|
_education = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region education : string
|
|||
|
|
|||
|
private string _education;
|
|||
|
public string Education
|
|||
|
{
|
|||
|
get { return _education; }
|
|||
|
set
|
|||
|
{
|
|||
|
base.OnPropertyChange<string>("education", _education, value);
|
|||
|
_education = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Service Factory IOrganogramService : IOrganogramService
|
|||
|
|
|||
|
internal static IOrganogramService Service
|
|||
|
{
|
|||
|
get { return Services.Factory.CreateService<IOrganogramService>(typeof(IOrganogramService)); }
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
#endregion
|
|||
|
}
|