52 lines
1.4 KiB
C#
52 lines
1.4 KiB
C#
using System.Collections.Generic;
|
|
using CompanyManagment.App.Contracts.Employer;
|
|
|
|
namespace CompanyManagment.App.Contracts.PersonalContractingParty;
|
|
|
|
public class PersonalContractingPartyViewModel
|
|
{
|
|
public long id { get; set; }
|
|
public string FName { get; set; }
|
|
public string LName { get; set; }
|
|
public string SureName { get; set; }
|
|
public string Nationalcode { get; set; }
|
|
|
|
public string IdNumber { get; set; }
|
|
//public string LegalName { get; set; }
|
|
public string RegisterId { get; set; }
|
|
|
|
public string NationalId { get; set; }
|
|
|
|
public string IsLegal { get; set; }
|
|
public string Phone { get; set; }
|
|
|
|
public string AgentPhone { get; set; }
|
|
|
|
public string Address { get; set; }
|
|
public int ArchiveCode { get; set; }
|
|
|
|
public string CreationDate { get; set; }
|
|
|
|
public long ContractsCount { get; set; }
|
|
|
|
public string FullName { get; set; }
|
|
|
|
public long WorkshopsCount { get; set; }
|
|
public long RepresentativeId { get; set; }
|
|
|
|
public bool HasInstitutionContract { get; set; }
|
|
|
|
|
|
public string State { get; set; }
|
|
public string City { get; set; }
|
|
public string Zone { get; set; }
|
|
|
|
public string IsActiveString { get; set; }
|
|
public string IsBlock { get; set; }
|
|
public int BlockTimes { get; set; }
|
|
public bool IsAuthenticated { get; set; }
|
|
public List<EmployerViewModel> EmployerList { get; set; }
|
|
|
|
|
|
|
|
} |