andyshon

RouteDAO.java

Oct 4th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | None | 0 0
  1. package com.andyshon;
  2.  
  3. import java.sql.SQLException;
  4. import java.util.Collection;
  5.  
  6. /**
  7.  * Created by andys_000 on 03.10.2017.
  8.  */
  9. public interface RouteDAO {
  10.     public void addRoute(Route route) throws SQLException;
  11.     public void updateRoute(int route_id, Route route) throws SQLException;
  12.     public Route getRouteById(int route_id) throws SQLException;
  13.     public Collection getAllRoutes() throws SQLException;
  14.     public void deleteRoute(Route route) throws SQLException;
  15. }
Add Comment
Please, Sign In to add comment