1 package ejava.projects.edmv.bl;
2
3 import java.util.List;
4
5 import ejava.projects.edmv.bo.VehicleRegistration;
6
7 /**
8 * This interface provides a _sparse_ example of business logic that
9 * provides management of vehicle registrations.
10 *
11 */
12 public interface VehicleMgmt {
13 List<VehicleRegistration> getRegistrations(int index, int count)
14 throws EDmvException;
15 }