Código PHP:
<?php
include_once("../model/ClienteService.php");
include_once("../model/Cliente.php");
include_once("../model/ConexionDb.php");
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<?php
$cs = new ClienteService();
#no es asi esto?
$cs ->pasajeDatos()->getNombre();
# $cs no es un array?
foreach ($cs as $clientes){
echo $clientes->getNombre();
}
?>
</body>
</html>