Added new columns into a FileMigrator and etc

Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
2020-12-26 13:17:39 +01:00
parent 038d0b95d2
commit f51979484f
4 changed files with 40 additions and 21 deletions

View File

@ -30,6 +30,10 @@ public class GroupService {
return this.repo.find(time, room, capacity);
}
public Optional<Groups> find(Integer zajCykId, Integer nrGr ) {
return this.repo.find(zajCykId, nrGr);
}
public List<Groups> getGroupsByCourse(Long id) {
return this.repo.getByCourse(id);
}