EchoTex_Payroll/HRM.BO/Report/EmployeeBasicInfo.cs

21 lines
552 B
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using System;
namespace HRM.BO.Report
{
public class EmployeeBasicInfo: BasicBaseObject
{
public EmployeeBasicInfo()
{
}
public string EmployeeNo { get; set; }
public string Name { get; set; }
public int Gender { get; set; }
public string RName { get; set; }
public DateTime BirthDate { get; set; }
public DateTime JoiningDate { get; set; }
public DateTime DateOfConfirmation { get; set; }
public int MaritalStatusId { get; set; }
}
}