First commit

This commit is contained in:
2025-01-11 06:34:04 +01:00
parent 12e0eb37a8
commit 9705818b38
22 changed files with 308 additions and 131 deletions

View File

@@ -0,0 +1,9 @@
package service
import dao.DictionaryDao
import models.Dictionary
interface DictionaryService {
fun getDictionary(id: Int): Dictionary?
fun getAllDictionary(): List<Dictionary>
}