public function countCliente()
 {
     try {
         $cliente = new ControllerCliente();
         $count = $cliente->countCliente();
         return $count;
     } catch (Exception $ex) {
         echo $ex;
     }
 }