49 lines
979 B
C#
49 lines
979 B
C#
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HRM.BO
|
|
{
|
|
public class OrganogramAuthority : UpdateAuditTrail
|
|
{
|
|
#region Constructor
|
|
|
|
public OrganogramAuthority()
|
|
{
|
|
NodeID = 0;
|
|
AuthorityType = EnumAuthorityType.Doted;
|
|
ChildNodeID = 0;
|
|
EmployeeID = 0;
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
#region Properties
|
|
|
|
public int NodeID { get; set; }
|
|
public EnumAuthorityType AuthorityType { get; set; }
|
|
public int ChildNodeID { get; set; }
|
|
|
|
public int EmployeeID { get; set; }
|
|
|
|
#endregion
|
|
|
|
//#region Service Factory IOrganogramService : IOrganogramService
|
|
|
|
//internal static IOrganogramService Service
|
|
//{
|
|
// get { return Services.Factory.CreateService<IOrganogramService>(typeof(IOrganogramService)); }
|
|
//}
|
|
|
|
//#endregion
|
|
|
|
|
|
}
|
|
|
|
|
|
} |