54 lines
1.1 KiB
C#
54 lines
1.1 KiB
C#
namespace CompanyManagment.App.Contracts.Employee.DTO;
|
|
|
|
/// <summary>
|
|
/// پرینت گروهی تفکیکی پرسنل
|
|
/// </summary>
|
|
public class PrintAllDetailsPersonnelInfoDtoClient
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// نام کامل پرسنل
|
|
/// </summary>
|
|
public string EmployeeFullName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
///کد ملی
|
|
/// </summary>
|
|
public string NationalCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// شماره شناسنامه
|
|
/// </summary>
|
|
public string IdNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// تاریخ تولد
|
|
/// </summary>
|
|
public string DateOfBirth { get; set; }
|
|
|
|
/// <summary>
|
|
/// نام پدر
|
|
/// </summary>
|
|
public string FatherName { get; set; }
|
|
|
|
/// <summary>
|
|
/// تعداد فرزندان
|
|
/// </summary>
|
|
public string NumberOfChildren { get; set; }
|
|
|
|
/// <summary>
|
|
/// استان
|
|
/// </summary>
|
|
public string State { get; set; }
|
|
|
|
/// <summary>
|
|
/// شهر
|
|
/// </summary>
|
|
public string City { get; set; }
|
|
|
|
|
|
public string Address { get; set; }
|
|
} |