interface GlobalItemDao
GlobalItemDao VenueNext
Created on 7/25/19. Copyright © 2019 VenueNext Inc. All rights reserved.
count |
abstract fun count(): Int |
deleteAllGlobalItems |
abstract fun deleteAllGlobalItems(): Unit |
deleteGlobalItem |
abstract fun deleteGlobalItem(globalItem: GlobalItem): Unit abstract fun deleteGlobalItem(globalItemUUID: String): Unit |
deleteGlobalItems |
abstract fun deleteGlobalItems(globalItems: List<GlobalItem>): Unit |
getGlobalItem |
abstract fun getGlobalItem(globalItemUUID: String): GlobalItem |
insertGlobalItem |
abstract fun insertGlobalItem(globalItem: GlobalItem): Unit |
insertGlobalItems |
abstract fun insertGlobalItems(globalItem: List<GlobalItem>): Unit |