31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class PrintViewModel
|
|
{
|
|
|
|
public long Id { get; set; }
|
|
public string ContractNo { get; set; }
|
|
public string ContractDateFa { get; set; }
|
|
public string WorkshopArchiveCode { get; set; }
|
|
public string ContractingPartyName { get; set; }
|
|
public string NationalcodeNationalId { get; set; }
|
|
public string WorkshopName { get; set; }
|
|
|
|
public string IdNumberRegisterId { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public string Address { get; set; }
|
|
|
|
public string ContractStartFa { get; set; }
|
|
public string ContractEndFa { get; set; }
|
|
|
|
public string ContractAmount { get; set; }
|
|
public string Obligation { get; set; }
|
|
public string TotalAmount { get; set; }
|
|
public string DailyCompenseation { get; set; }
|
|
public string Description1 { get; set; }
|
|
public string Description2 { get; set; }
|
|
|
|
public string HasValueAddedTax { get; set; }
|
|
public double ValueAddedTax { get; set; }
|
|
public string ValueAddedTaxStr { get; set; }
|
|
} |