43 lines
927 B
C#
43 lines
927 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HRM.BO
|
|
{
|
|
public class OrganogramResponsibility : AuditTrailBase
|
|
{
|
|
|
|
public OrganogramResponsibility()
|
|
{
|
|
OrganogramID = 0;
|
|
NodeID = 0;
|
|
Responsibility = string.Empty;
|
|
IsPrimary = false;
|
|
|
|
}
|
|
|
|
#region Property
|
|
|
|
public int OrganogramID { get; set; }
|
|
public int NodeID { get; set; }
|
|
public string Responsibility { get; set; }
|
|
public bool IsPrimary { get; set; }
|
|
|
|
|
|
|
|
//#region Service Factory IOrganogramService : IOrganogramService
|
|
|
|
//internal static IOrganogramService Service
|
|
//{
|
|
// get { return Services.Factory.CreateService<IOrganogramService>(typeof(IOrganogramService)); }
|
|
//}
|
|
|
|
//#endregion
|
|
|
|
#endregion
|
|
}
|
|
}
|