StationsRepository

class StationsRepository(stationsFirebaseDataSource: StationsFirebaseDataSource = StationsFirebaseDataSource(), firebaseInstance: FirebaseFirestore = FirebaseFirestore.getInstance())

A repository class for stations objects.

Constructors

Link copied to clipboard
fun StationsRepository(stationsFirebaseDataSource: StationsFirebaseDataSource = StationsFirebaseDataSource(), firebaseInstance: FirebaseFirestore = FirebaseFirestore.getInstance())

Functions

Link copied to clipboard
fun getStations(): LiveData<List<Station>>

Get all stations from the database. The return type of the function is LiveData in order to support data flow from the data to the ui layer.