fix:#46 added tests for UpdateCourse

This commit is contained in:
Elmar Kresse
2024-07-06 17:18:09 +02:00
parent 4e89318df6
commit d44544cf8a
4 changed files with 17 additions and 18 deletions

View File

@@ -26,7 +26,7 @@ import (
// CourseService defines the methods to be implemented
type CourseService interface {
GetAllCourses() []string
GetAllCoursesForSemester(semester string) []string
GetAllCoursesForSemester(semester string) []model.SeminarGroup
GetAllCoursesForSemesterWithEvents(semester string) ([]string, error)
}