Created
April 12, 2021 08:01
-
-
Save ajailani4/f66c33014d94947a94bf44c7c5800461 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ApiHelper @Inject constructor( | |
private val apiService: ApiService | |
) { | |
suspend fun getBrands(page: Int, limit: Int) = | |
apiService.getBrands(page, limit) | |
suspend fun getPhones(brandSlug: String, page: Int, limit: Int) = | |
apiService.getPhones(brandSlug, page, limit) | |
suspend fun getPhonesHome(brandSlug: String) = | |
apiService.getPhonesHome(brandSlug) | |
suspend fun getPhoneSpecs(brandSlug: String, phoneSlug: String) = | |
apiService.getPhoneSpecs(brandSlug, phoneSlug) | |
suspend fun getPhoneSearch(phoneQuery: String, page: Int, limit: Int) = | |
apiService.getPhoneSearch(phoneQuery, page, limit) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment