All checks were successful
continuous-integration/drone/push Build is passing
17 lines
693 B
Kotlin
17 lines
693 B
Kotlin
package com.kmalbz.database.service
|
|
|
|
import com.kmalbz.api.model.ApiObject
|
|
import java.time.LocalDate
|
|
import java.util.*
|
|
|
|
interface ISampleObjectService{
|
|
fun addOne(apiObject: ApiObject)
|
|
suspend fun getAllSampleObjects(): List<ApiObject>
|
|
suspend fun getCount(): Long
|
|
suspend fun getPage(page: Long): List<ApiObject>
|
|
suspend fun getSampleObjectbyDeviceID(device_id: Int): List<ApiObject>
|
|
suspend fun getSampleObjectbyTag(tag: String): ApiObject?
|
|
suspend fun getSampleObjectbyDate(date: LocalDate): List<ApiObject>
|
|
suspend fun getSampleObjectbeforeDate(date: LocalDate): List<ApiObject>
|
|
suspend fun getSampleObjectafterDate(date: LocalDate): List<ApiObject>
|
|
} |