52 lines
1.2 KiB
C#
52 lines
1.2 KiB
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HRM.BO
|
|
{
|
|
public class OrganogramDelegation : AuditTrailBase
|
|
{
|
|
|
|
#region Constructor
|
|
|
|
public OrganogramDelegation()
|
|
{
|
|
OrganogramID = 0;
|
|
NodeID = 0;
|
|
EmployeeID = 0;
|
|
FromDate = DateTime.MinValue;
|
|
ToDate = DateTime.MinValue;
|
|
DelegationType = string.Empty;
|
|
IsActive = false;
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Property
|
|
|
|
public int OrganogramID { get; set; }
|
|
|
|
public int NodeID { get; set; }
|
|
public int EmployeeID { get; set; }
|
|
public DateTime FromDate { get; set; }
|
|
public DateTime ToDate { get; set; }
|
|
public string DelegationType { get; set; }
|
|
public bool IsActive { get; set; }
|
|
|
|
|
|
//#region Service Factory IOrganogramService : IOrganogramService
|
|
|
|
//internal static IOrganogramService Service
|
|
//{
|
|
// get { return Services.Factory.CreateService<IOrganogramService>(typeof(IOrganogramService)); }
|
|
//}
|
|
|
|
//#endregion
|
|
|
|
#endregion
|
|
}
|
|
} |