37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
using CompanyManagment.App.Contracts.TemporaryClientRegistration;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class InstitutionContractPaymentOneTimeViewModel
|
|
{
|
|
/// <summary>
|
|
/// مجموع مبالغ
|
|
/// </summary>
|
|
public string TotalAmount { get; set; }
|
|
/// <summary>
|
|
/// ارزش افزوده
|
|
/// </summary>
|
|
public string Tax { get; set; }
|
|
/// <summary>
|
|
/// مبلغ قابل پرداخت
|
|
/// </summary>
|
|
public string PaymentAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// مجموع مبالغ بدون تخفیف
|
|
/// </summary>
|
|
public string TotalAmountWithoutDiscount { get; set; }
|
|
|
|
/// <summary>
|
|
/// مبلغ یک ماه بدون تخفیف
|
|
/// </summary>
|
|
public string OneMonthPaymentWithoutDiscount { get; set; }
|
|
|
|
public string DiscountedAmount { get; set; }
|
|
public int DiscountPercetage { get; set; }
|
|
}
|
|
public class InstitutionContractPaymentMonthlyViewModel:InstitutionContractPaymentOneTimeViewModel
|
|
{
|
|
public List<MonthlyInstallment> Installments { get; set; } = [];
|
|
} |