37 lines
722 B
C#
37 lines
722 B
C#
|
|
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
|
|
}
|