Skip to content

Instantly share code, notes, and snippets.

@ajailani4
Created April 12, 2021 08:01
Show Gist options
  • Save ajailani4/f66c33014d94947a94bf44c7c5800461 to your computer and use it in GitHub Desktop.
Save ajailani4/f66c33014d94947a94bf44c7c5800461 to your computer and use it in GitHub Desktop.
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