21 lines
552 B
C#
21 lines
552 B
C#
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; }
|
|
}
|
|
} |