update
This commit is contained in:
@@ -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;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user