View Javadoc

1   /*
2    * 
3    * 
4    */
5   package oscon2006.dao;
6   
7   import java.util.*;
8   
9   public interface ExampleDAO
10  {
11  	public List<Employee> getEmployees();
12  	
13  	public List<Order> getOrders(Date orderDate);
14  	
15  }