Last change
on this file was d3cf3a1, checked in by Marija Micevska <marija_micevska@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
285 bytes
|
Line | |
---|
1 | package project.educatum.service;
|
---|
2 |
|
---|
3 | import project.educatum.model.relations.TeacherStudentRelation;
|
---|
4 |
|
---|
5 | import java.util.List;
|
---|
6 |
|
---|
7 | public interface TeacherStudentService {
|
---|
8 |
|
---|
9 | TeacherStudentRelation find(Integer idTeacher, Integer studentID);
|
---|
10 |
|
---|
11 | List<TeacherStudentRelation> findAll();
|
---|
12 |
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.