37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
|
|
namespace CompanyManagment.App.Contracts.EmployeeDocumentsAdminSelection
|
|
{
|
|
public class EmployeeDocumentsAdminSelectionViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
|
|
public string EmployeeFullName { get; set; }
|
|
public string Gender { get; set; }
|
|
|
|
//عکس پرسنل
|
|
public string EmployeePicturePath { get; set; }
|
|
|
|
//شناسنامه
|
|
public string IdCardPage1PicturePath { get; set; }
|
|
|
|
public string IdCardPage2PicturePath { get; set; }
|
|
|
|
public string IdCardPage3PicturePath { get; set; }
|
|
|
|
|
|
public string IdCardPage4PicturePath { get; set; }
|
|
|
|
//کارت ملی
|
|
public string NationalCardFrontPicturePath { get; set; }
|
|
|
|
public string NationalCardRearPicturePath { get; set; }
|
|
|
|
//مدرک تحصیلی
|
|
public string EducationalDegreePicturePath { get; set; }
|
|
|
|
//کارت پایان خدمت
|
|
public string MilitaryServiceCardPicturePath { get; set; }
|
|
}
|
|
}
|