Merge with assign

This commit is contained in:
Filip Izydorczyk
2020-10-01 16:46:45 +02:00
14 changed files with 395 additions and 32 deletions

View File

@ -37,4 +37,8 @@ public class GroupService {
public int getGroupsAmmount() {
return (int) this.repo.count();
}
public Optional<Groups> getGroupById(Long id) {
return this.repo.findById(id);
}
}