17 lines
768 B
C#
17 lines
768 B
C#
namespace CompanyManagment.App.Contracts.Employee;
|
|
|
|
public class EditEmployeeInEmployeeDocument
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public string FName { get; set; } = string.Empty;
|
|
public string LName { get; set; } = string.Empty;
|
|
public string NationalCode { get; set; } = string.Empty;
|
|
public string IdNumber { get; set; } = string.Empty;
|
|
public string FatherName { get; set; } = string.Empty;
|
|
public string BirthDate { get; set; } = string.Empty;
|
|
public string MaritalStatus { get; set; } = string.Empty;
|
|
public string MilitaryService { get; set; } = string.Empty;
|
|
public string Nationality { get; set; } = string.Empty;
|
|
public string Gender { get; set; } = string.Empty;
|
|
} |