refactor(common): Student

This commit is contained in:
Tibo De Peuter 2025-03-31 21:48:13 +02:00
parent bc8e888373
commit d6b79dcced
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
7 changed files with 22 additions and 18 deletions

View file

@ -1,10 +1,11 @@
import { getClassRepository, getStudentRepository, getTeacherInvitationRepository, getTeacherRepository } from '../data/repositories.js';
import { mapToClassDTO } from '../interfaces/class.js';
import { mapToStudentDTO, StudentDTO } from '../interfaces/student.js';
import { mapToStudentDTO } from '../interfaces/student.js';
import { mapToTeacherInvitationDTO, mapToTeacherInvitationDTOIds } from '../interfaces/teacher-invitation.js';
import { getLogger } from '../logging/initalize.js';
import { ClassDTO } from 'dwengo-1-common/src/interfaces/class';
import { TeacherInvitationDTO } from 'dwengo-1-common/src/interfaces/teacher-invitation';
import { StudentDTO } from 'dwengo-1-common/src/interfaces/student';
const logger = getLogger();