1 package ejava.projects.esales.bl; 2 3 import java.util.List; 4 5 import ejava.projects.esales.bo.Account; 6 7 public interface AccountMgmt { 8 List<Account> getAccounts(int index, int count) throws AccountMgmtException; 9 }