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

com.github.lsqlebai.curd.CURDMapper.kt Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package com.github.lsqlebai.curd

interface CURDMapper {
    fun create(item: Item)
    fun update(item: Item)
    fun delete(id: Int)
    fun listByParent(id: Int): List
    fun one(id: Int): Item?
    fun listAll(): List
    fun list(): List

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy