01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tcspring.beans.orm.data;
05:
06: import com.tcspring.beans.orm.domain.Customer;
07:
08: import java.util.List;
09:
10: public interface CustomerDao {
11:
12: public List getAll();
13:
14: public List getAllWithOnlyOnePermission();
15:
16: public void save(Customer customer);
17: }
|