All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.cccev.s2.concept.domain.InformationConceptFinder.kt Maven / Gradle / Ivy

There is a newer version: 0.20.0
Show newest version
package cccev.s2.concept.domain

import cccev.s2.concept.domain.model.InformationConcept

interface InformationConceptFinder {
    suspend fun getOrNull(id: InformationConceptId): InformationConcept?
    suspend fun get(id: InformationConceptId): InformationConcept
    suspend fun getByIdentifierOrNull(identifier: String): InformationConcept?
    suspend fun getByIdentifier(identifier: String): InformationConcept
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy