18 lines
600 B
Kotlin
18 lines
600 B
Kotlin
package com.example.myapplication.di
|
|
|
|
import com.example.myapplication.businessLogic.repository.BasketRepository
|
|
import com.example.myapplication.businessLogic.repository.OrderRepository
|
|
import com.example.myapplication.businessLogic.repository.ServiceRepository
|
|
import com.example.myapplication.businessLogic.repository.UserRepository
|
|
|
|
interface AppContainer {
|
|
val serviceRepo: ServiceRepository
|
|
val userRepo: UserRepository
|
|
val orderRepo: OrderRepository
|
|
val basketRepo: BasketRepository
|
|
|
|
companion object {
|
|
const val TIMEOUT = 5000L
|
|
const val LIMIT = 10
|
|
}
|
|
} |