source: src/main/java/service/StudentSubjectService.java@ 1eb7a55

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: 446 bytes
Line 
1package service;
2
3import model.StudentSubject;
4import java.sql.SQLException;
5import java.util.List;
6
7public interface StudentSubjectService {
8
9 void enroll(StudentSubject ss) throws SQLException;
10
11 List<StudentSubject> findAll() throws SQLException;
12
13 StudentSubject findById(Long ss_id) throws SQLException;
14
15 void updateEnrollment(StudentSubject ss) throws SQLException;
16
17 void deleteEnrollment(Long ss_id) throws SQLException;
18}
Note: See TracBrowser for help on using the repository browser.