47 lines
1021 B
C#
47 lines
1021 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HRM.BO
|
|
{
|
|
public class OrganogramSkillLevel : AuditTrailBase
|
|
{
|
|
#region Constructor
|
|
|
|
public OrganogramSkillLevel()
|
|
{
|
|
OrganogramID = 0;
|
|
NodeResponsibilityID = 0;
|
|
NodeID = 0;
|
|
LevelID = 0;
|
|
SkillID = 0;
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Property
|
|
|
|
public int OrganogramID { get; set; }
|
|
public int NodeID { get; set; }
|
|
public int NodeResponsibilityID { get; set; }
|
|
public int LevelID { get; set; }
|
|
public int SkillID { get; set; }
|
|
|
|
|
|
//#region Service Factory IOrganogramService : IOrganogramService
|
|
|
|
//internal static IOrganogramService Service
|
|
//{
|
|
// get { return Services.Factory.CreateService<IOrganogramService>(typeof(IOrganogramService)); }
|
|
//}
|
|
|
|
//#endregion
|
|
|
|
#endregion
|
|
}
|
|
}
|