44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using _0_Framework.Application.Enums;
|
|
|
|
namespace CompanyManagment.App.Contracts.Employer;
|
|
|
|
/// <summary>
|
|
/// مدل جستجوی لیست کارفرما
|
|
/// </summary>
|
|
public class GetEmployerSearchModel
|
|
{
|
|
/// <summary>
|
|
/// نام شرکت / نام و نام خانوادگی
|
|
/// </summary>
|
|
public string FullNameOrCompanyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// کدملی/ شناسه ملی
|
|
/// </summary>
|
|
public string NationalCodeOrNationalId { get; set; }
|
|
|
|
/// <summary>
|
|
/// شماره شناسنامه یا شماره ثبت
|
|
/// </summary>
|
|
public string IdNumberOrRegisterId { get; set; }
|
|
|
|
/// <summary>
|
|
/// نام طرف حساب
|
|
/// </summary>
|
|
public string ContractingPartyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// وضعیت کارفرما
|
|
/// </summary>
|
|
public ActivationStatus EmployerStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// نوع کارفرما
|
|
/// </summary>
|
|
public LegalType EmployerType { get; set; }
|
|
|
|
/// <summary>
|
|
/// پیج ایندکس برای دسته بندی سی تایی
|
|
/// </summary>
|
|
public int PageIndex { get; set; }
|
|
} |