Files
Backend-Api/CompanyManagment.App.Contracts/InsuranceEmployeeInfo/CreateInsuranceEmployeeInfo.cs
2024-07-05 21:36:15 +03:30

34 lines
920 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CompanyManagment.App.Contracts.Workshop;
namespace CompanyManagment.App.Contracts.InsuranceEmployeeInfo;
public class CreateInsuranceEmployeeInfo
{ //آی دی کارگاه
public long EmployeeId { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public string FatherName { get; set; }
public string DateOfBirth { get; set; }
public string DateOfIssue { get; set; }
public string PlaceOfIssue { get; set; }
public string NationalCode { get; set; }
public string IdNumber { get; set; }
public string Gender { get; set; }
public string InsuranceCode { get; set; }
public string Nationality { get; set; }
public DateTime DateOfBirthGr { get; set; }
public DateTime DateOfIssueGr { get; set; }
}