Kapitel 7 abgeschlossen.

This commit is contained in:
2026-08-16 00:29:01 +02:00
parent da8d2bb1da
commit f9e398b225
47 changed files with 2636 additions and 107 deletions
@@ -7,6 +7,7 @@ public interface IStudentRepository
Student? GetById(Guid id);
List<Student> GetAll(bool includeInactive = false);
List<Student> GetByGroup(Guid groupId);
StudentReferenceSummary GetReferenceSummary(Guid studentId);
void Save(Student student);
void Delete(Guid id);
}