-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8aa3ac5
commit 5fa0e97
Showing
10 changed files
with
7 additions
and
343 deletions.
There are no files selected for viewing
65 changes: 0 additions & 65 deletions
65
server/src/main/kotlin/fi/oph/kitu/generated/model/YkiArviointi.kt
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
server/src/main/kotlin/fi/oph/kitu/generated/model/YkiJarjestaja.kt
This file was deleted.
Oops, something went wrong.
50 changes: 0 additions & 50 deletions
50
server/src/main/kotlin/fi/oph/kitu/generated/model/YkiOsallistuja.kt
This file was deleted.
Oops, something went wrong.
83 changes: 0 additions & 83 deletions
83
server/src/main/kotlin/fi/oph/kitu/generated/model/YkiSuoritus.kt
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
server/src/main/kotlin/fi/oph/kitu/generated/model/YkiTutkintotarjonta.kt
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
package fi.oph.kitu.yki | ||
|
||
import fi.oph.kitu.generated.model.YkiSuoritus | ||
import org.springframework.stereotype.Repository | ||
|
||
@Repository | ||
class YkiRepository { | ||
fun insertSuoritukset(suoritukset: List<YkiSuoritus>) { | ||
for (suoritus in suoritukset) { | ||
insertSuoritus(suoritus) | ||
} | ||
} | ||
fun insertSuoritukset(suoritukset: List<YkiSuoritus>): Void = throw NotImplementedError() | ||
|
||
fun insertSuoritus(suoritus: YkiSuoritus): Unit = throw NotImplementedError() | ||
fun insertSuoritus(suoritus: YkiSuoritus): Void = throw NotImplementedError() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.