package DAO; import model.University; import java.sql.SQLException; import java.util.List; public interface UniversityDAO { List getAll() throws SQLException; List getUniversitiesInSkopje() throws SQLException; University getByID(Long id) throws SQLException; void update(University university) throws SQLException; University save(University university) throws SQLException; void delete(Long id) throws SQLException; }