interface SectionDao
SectionDao VenueNext
Created on 3/7/19. Copyright © 2019 VenueNext Inc. All rights reserved.
count |
abstract fun count(): Int |
deleteAllSections |
abstract fun deleteAllSections(): Unit |
deleteSection |
abstract fun deleteSection(section: Section): Unit abstract fun deleteSection(sectionUUID: String): Unit |
deleteSections |
abstract fun deleteSections(sections: List<Section>): Unit |
getSection |
abstract fun getSection(sectionUUID: String): LiveData<Section> |
getSections |
abstract fun getSections(): LiveData<List<Section>> |
insertSection |
abstract fun insertSection(section: Section): Unit |
insertSections |
abstract fun insertSections(section: List<Section>): Unit |