1 package ejava.projects.edmv.bl;
2
3 import java.util.List;
4
5 import ejava.projects.edmv.bo.Person;
6
7 /**
8 * This interface provides a _sparse_ example for business logic related
9 * to managing people within the DMV.
10 */
11 public interface PersonMgmt {
12 List<Person> getPeople(int index, int count) throws EDmvException;
13 }