Interface CustomerDAO
-
- All Known Implementing Classes:
CustomerDAOImpl
public interface CustomerDAO
This interface defines basic DAO capabilities for the customer domain.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
createCustomer(Customer customer)
void
deleteCustomer(Customer customer)
List<Customer>
findCustomerByName(String firstName, String lastName, int offset, int limit)
Customer
getCustomer(int id)
Customer
update(Customer customer)
-