26 lines
904 B
C#
26 lines
904 B
C#
namespace CompanyManagment.App.Contracts.Employee;
|
|
|
|
public class EmployeeSearchModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string FName { get; set; }
|
|
public string LName { get; set; }
|
|
public string NationalCode { get; set; }
|
|
|
|
public string EmployeeFullName { get; set; }
|
|
public string IdNumber { get; set; }
|
|
public string Gender { get; set; }
|
|
public string MaritalStatus { get; set; }
|
|
public string LevelOfEducation { get; set; }
|
|
|
|
public bool IsActive { get; private set; }
|
|
public string IsActiveString { get; set; }
|
|
public string InsuranceCode { get; set; }
|
|
public string WorkshopName { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public long EmployerId { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public string EmployerLName { get; set; }
|
|
public string State { get; set; }
|
|
public string City { get; set; }
|
|
} |