Show Proyecto

This commit is contained in:
2023-10-20 19:03:29 -03:00
parent 4734417fe2
commit b4742a501e
16 changed files with 644 additions and 48 deletions

View File

@ -5,4 +5,9 @@ class Superficie
{
public float $sobre_nivel;
public float $bajo_nivel;
public function total(): float
{
return $this->bajo_nivel + $this->sobre_nivel;
}
}