mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-26 12:08:45 +00:00
update default of AbstractExposedWriteCRUDRepo
This commit is contained in:
parent
2511e18d69
commit
babbfc55e4
@ -44,7 +44,7 @@ abstract class AbstractExposedWriteCRUDRepo<ObjectType, IdType, InputValueType>(
|
|||||||
*
|
*
|
||||||
* @return In case when id for the model has been created new [IdType] should be returned
|
* @return In case when id for the model has been created new [IdType] should be returned
|
||||||
*/
|
*/
|
||||||
protected abstract fun createAndInsertId(value: InputValueType, it: InsertStatement<Number>): IdType?
|
protected open fun createAndInsertId(value: InputValueType, it: InsertStatement<Number>): IdType? = null
|
||||||
|
|
||||||
protected open fun insert(value: InputValueType, it: InsertStatement<Number>) {
|
protected open fun insert(value: InputValueType, it: InsertStatement<Number>) {
|
||||||
val id = createAndInsertId(value, it)
|
val id = createAndInsertId(value, it)
|
||||||
|
Loading…
Reference in New Issue
Block a user