package fr.postgresjson.entity class EntityCollection> { var collection: MutableMap = mutableMapOf() fun get(id: T): E? { return collection[id] } fun set(entity: E) { collection.set(entity.id, entity) } }