feat: add daily compensation and obligation properties to institution contract response

This commit is contained in:
MahanCh
2025-09-02 12:46:10 +03:30
parent ee72c95d55
commit a6c1ae7971

View File

@@ -622,7 +622,9 @@ public class institutionContractController : AdminBaseController
ContractEnd = res.ContractEndFa,
Discount = res.Discount??"0",
ValueAddedTax = res.ValueAddedTaxStr,
TotalAmountWithTax = res.OneTimeTotalPaymentStr
TotalAmountWithTax = res.OneTimeTotalPaymentStr,
DailyCompensation = res.DailyCompensation,
Obligation = res.Obligation
};
return response;
}
@@ -681,6 +683,9 @@ public class InstitutionPlanCalculatorResponse
public string ContractEnd { get; set; }
public string Discount { get; set; }
public string ValueAddedTax { get; set; }
public string DailyCompensation { get; set; }
public string Obligation { get; set; }
}
public class WorkshopServiceCalculatorResponse