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