View Javadoc
1   package ejava.projects.esales.dao;
2   
3   import java.util.List;
4   
5   import ejava.projects.esales.bo.Account;
6   
7   public interface AccountDAO {
8   	void createAccount(Account account) 
9   		throws AccountDAOException;
10  	List<Account> getAccounts(int index, int count)
11  	    throws AccountDAOException;
12  }