';
try
{
$customers = $customerService->getAllCustomers();
if($customers != null && count($customers) > 0)
{
foreach ($customers as $customer)
{
if($customer != null)
{
echo '';
echo '' . $customer->customerId . '';
echo '' . $customer->customerName . '';
echo '' . $customer->customerType . '';
echo 'customerAddress . ']]>';
echo 'entryModifiedDate . ']]>';
echo '';
}
}
}
}
catch (Exception $ex)
{
echo '' . $ex->getMessage() . '';
}
echo '';
?>