Bernhard
08/21/2018, 11:10 AMinterface EntityRepository<T> {
fun fullTextSearch(text: String?, selectedIds: Array<String>?, exclude: Boolean?, size: Int): List<T>
fun textSearch(text: String?, size: Int): List<T> {
return fullTextSearch(text, null, null, size)
}
}
Czar
08/21/2018, 12:16 PMBernhard
08/21/2018, 2:21 PM