01: /**
02: * User: Clinton Begin Date: Jul 13, 2003 Time: 8:18:13 PM
03: */package com.ibatis.jpetstore.persistence.iface;
04:
05: import java.util.List;
06:
07: import com.ibatis.jpetstore.domain.Category;
08:
09: public interface CategoryDao {
10:
11: public List getCategoryList();
12:
13: public Category getCategory(String categoryId);
14:
15: }
|