StreetRepository

@Repository
class StreetRepository

Constructors

Link copied to clipboard

Functions

Link copied to clipboard
fun create(name: String, postCodeId: UUID): Street
Link copied to clipboard
fun delete(id: UUID)
Link copied to clipboard
fun find(id: UUID): Street?
Link copied to clipboard
fun list(limit: Int? = null, offset: Long = 0, vararg order: Pair<Expression<*>, SortOrder> = arrayOf(StreetTable.id to SortOrder.ASC)): SizedIterable<Street>
Link copied to clipboard
fun update(id: UUID, name: String, postCodeId: UUID): Street