-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBackEndInterface.java
More file actions
14 lines (11 loc) · 868 Bytes
/
Copy pathBackEndInterface.java
File metadata and controls
14 lines (11 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.util.List;
// --== CS400 File Header Information ==--
// Author: Hailey Park
// Email: hpark353@wisc.edu
// Notes: This interface is part of the starter archive for the Back End developers
public interface BackEndInterface {
public void add(Reservation reservation);
public List<Reservation> selectByOccupant(String occupantName);
public List<Reservation> selectByDate(String checkIn,String checkOut);
public int getSize();
}