AppRoomDatabase

abstract class AppRoomDatabase : RoomDatabase

The main Room database for the application.

This database aggregates entities from all feature modules and provides access to their respective DAOs.

Constructors

Link copied to clipboard
constructor()

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
abstract fun categoriesRoomDao(): CategoriesDao
Link copied to clipboard
abstract fun clientsRoomDao(): ClientsDao
Link copied to clipboard
abstract fun ordersRoomDao(): OrdersRoomDao
Link copied to clipboard
abstract fun productsRoomDao(): ProductsDao
Link copied to clipboard
abstract fun salesRoomDao(): SalesRoomDao