This commit is contained in:
2025-03-09 23:50:32 +01:00
parent 1e498b41c7
commit 67c05416ac
190 changed files with 8061 additions and 3363 deletions

View File

@@ -0,0 +1,14 @@
<?php
class Simulation {
public $Downpayment;
public $InstalmentsNumber;
public $ProductNumber;
public $TotalPrice;
public function __construct($dnp, $inr, $prd, $price){
$this->Downpayment = $dnp;
$this->InstalmentsNumber = $inr;
$this->ProductNumber = $prd;
$this->TotalPrice = $price;
}
};