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