id = $id; $this->customer = $customer; $this->orderdate = $orderdate; $this->status = $status; $this->lines = array(); } function getTotalPrice() { $res = 0.00; foreach($this->lines as $ol) { $res += $ol->getTotalPrice(); } return $res; } } ?>