|
Last change
on this file since 1eb7a55 was 1eb7a55, checked in by Elena Markovska <elena.elenamarkovska@…>, 11 days ago |
|
Initial commit - Scholaris project code
|
-
Property mode
set to
100644
|
|
File size:
442 bytes
|
| Rev | Line | |
|---|
| [1eb7a55] | 1 | package service;
|
|---|
| 2 |
|
|---|
| 3 | import model.University;
|
|---|
| 4 |
|
|---|
| 5 | import java.sql.SQLException;
|
|---|
| 6 | import java.util.List;
|
|---|
| 7 |
|
|---|
| 8 | public interface UniversityService {
|
|---|
| 9 |
|
|---|
| 10 | List<University> getAllFaculty() throws SQLException;
|
|---|
| 11 |
|
|---|
| 12 | List<University> getAllUniversities() throws SQLException;
|
|---|
| 13 |
|
|---|
| 14 | University getById(Long id) throws SQLException;
|
|---|
| 15 |
|
|---|
| 16 | void update(University university);
|
|---|
| 17 |
|
|---|
| 18 | void delete(Long id) throws SQLException;
|
|---|
| 19 |
|
|---|
| 20 | void save(University university);
|
|---|
| 21 |
|
|---|
| 22 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.