49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HRM.BO
|
|||
|
{
|
|||
|
public class OrganogramJobDesc : AuditTrailBase
|
|||
|
{
|
|||
|
|
|||
|
#region Constructor
|
|||
|
|
|||
|
public OrganogramJobDesc()
|
|||
|
{
|
|||
|
OrganogramID = 0;
|
|||
|
NodeID = 0;
|
|||
|
Purpose = string.Empty;
|
|||
|
JobSummery = string.Empty;
|
|||
|
Experience = string.Empty;
|
|||
|
Education = string.Empty;
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
#region Property
|
|||
|
|
|||
|
public int OrganogramID { get; set; }
|
|||
|
public int NodeID { get; set; }
|
|||
|
|
|||
|
public string Purpose { get; set; }
|
|||
|
public string JobSummery { get; set; }
|
|||
|
public string Experience { get; set; }
|
|||
|
public string Education { get; set; }
|
|||
|
|
|||
|
//#region Service Factory IOrganogramService : IOrganogramService
|
|||
|
|
|||
|
//internal static IOrganogramService Service
|
|||
|
//{
|
|||
|
// get { return Services.Factory.CreateService<IOrganogramService>(typeof(IOrganogramService)); }
|
|||
|
//}
|
|||
|
|
|||
|
//#endregion
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|