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