feat: add seating plans for learning groups
This commit is contained in:
@@ -19,6 +19,13 @@ public interface IGroupRepository
|
||||
void Save(LearningGroup group);
|
||||
void Delete(Guid id);
|
||||
}
|
||||
public interface ISeatingPlanRepository
|
||||
{
|
||||
SeatingPlan? GetById(Guid id);
|
||||
List<SeatingPlan> GetByGroup(Guid groupId);
|
||||
void Save(SeatingPlan plan);
|
||||
void Delete(Guid id);
|
||||
}
|
||||
public interface IGroupMembershipRepository
|
||||
{
|
||||
List<GroupMembership> GetByStudent(Guid studentId);
|
||||
|
||||
Reference in New Issue
Block a user