EchoTex_Payroll/HRM.BO/Employee/EmployeeConfirmation.cs

37 lines
722 B
C#
Raw Permalink Normal View History

2024-10-14 10:01:49 +06:00

using System;
using System.Collections.Generic;
using System.Linq;
namespace HRM.BO
{
public class EmployeeConfirmation : AuditTrailBase
{
#region Constructor
public EmployeeConfirmation()
{
}
#endregion
#region Properties
public int EmployeeID { get; set; }
public int Month { get; set; }
public DateTime ConfirmDate { get; set; }
public string EmployeeName { get; set; }
public string EmployeeNo { get; set; }
public DateTime JoiningDate { get; set; }
public int gradeConfirmDuration { get; set; }
#endregion
}
#region IEmployeeConfirmation Service
#endregion
}