39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractDiscountResponse
|
|
{
|
|
public InstitutionContractDiscountOneTimeViewModel OneTime { get; set; }
|
|
public InstitutionContractDiscountMonthlyViewModel Monthly { get; set; }
|
|
}
|
|
public class InstitutionContractDiscountMonthlyViewModel:InstitutionContractDiscountOneTimeViewModel
|
|
{
|
|
public List<MonthlyInstallment> Installments { get; set; }
|
|
}
|
|
|
|
public class InstitutionContractDiscountOneTimeViewModel
|
|
{
|
|
/// <summary>
|
|
/// مجموع مبالغ
|
|
/// </summary>
|
|
public string TotalAmount { get; set; }
|
|
/// <summary>
|
|
/// ارزش افزوده
|
|
/// </summary>
|
|
public string Tax { get; set; }
|
|
/// <summary>
|
|
/// مبلغ قابل پرداخت
|
|
/// </summary>
|
|
public string PaymentAmount { get; set; }
|
|
|
|
public string DiscountedAmount { get; set; }
|
|
|
|
public int DiscountPercetage { get; set; }
|
|
|
|
public string Obligation { get; set; }
|
|
|
|
public string OneMonthAmount { get; set; }
|
|
}
|