findCustomerByID(String id) The findCustomerByID method performs a database query to
return a Customer object
representing the row in the customer table
that matches the object id.
id, the object id of the customer table.the customer.
The findCustomerByID method performs a database query to
return a Customer object
representing the row in the customer table
that matches the object id.
id, the object id of the customer table.the customer. null if there isn't a customer associatedthe id exception: ProjectManagementBusinessException - if there is a problem retrieving customer information.
The getAllCustomers method performs a database query to
return all Customer objects representing the
row in the Customers table.
all the customers, or null if there are no any. exception: ProjectManagementBusinessException - if there is a problem retrieving customer information.