This commit is contained in:
Filip Izydorczyk
2020-09-30 19:15:32 +02:00
parent b503ebcbcc
commit fa74965504
8 changed files with 131 additions and 21 deletions

View File

@ -23,4 +23,15 @@ public class Assignment {
this.commision = commision;
this.group = group;
}
public Assignment() {
}
public Long getId() {
return this.id;
}
public Groups getGroup() {
return this.group;
}
}