41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.FileEmployee;
|
|
|
|
public class FileEmployeeViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string FName { get; set; }
|
|
public string LName { get; set; }
|
|
public long RepresentativeId { get; set; }
|
|
public string RepresentativeFullName { get; set; }
|
|
public string FullName { get; set; }
|
|
public string FatherName { get; set; }
|
|
|
|
public string DateOfBirth { get; set; }
|
|
public string NationalCode { get; set; }
|
|
public string IdNumber { get; set; }
|
|
public string Gender { get; set; }
|
|
public string MaritalStatus { get; set; }
|
|
public string LevelOfEducation { get; set; }
|
|
public string FieldOfStudy { get; set; }
|
|
public string InsuranceCode { get; set; }
|
|
public string Phone { get; set; }
|
|
public string OfficePhone { get; set; }
|
|
|
|
public string MclsUserName { get; set; }
|
|
|
|
public string MclsPassword { get; set; }
|
|
|
|
public string EserviceUserName { get; set; }
|
|
|
|
public string EservicePassword { get; set; }
|
|
|
|
public string TaxOfficeUserName { get; set; }
|
|
|
|
public string TaxOfficepassword { get; set; }
|
|
|
|
public string SanaUserName { get; set; }
|
|
public string SanaPassword { get; set; }
|
|
public string IsActive { get; set; }
|
|
} |