package myapp.dao;
import com.easyjf.core.dao.GenericDAO;
import myapp.domain.Customer;
/**
* CustomerDAO
* @author EasyJWeb 1.0-m2
* $Id: CustomerDAO.java,v 0.0.1 2007-12-19 11:36:56 EasyJWeb 1.0-m2 Exp $
*/
public interface ICustomerDAO extends GenericDAO<Customer> {
}