Skip to content

Instantly share code, notes, and snippets.

@abbas-oveissi
Created June 13, 2019 14:31
Show Gist options
  • Save abbas-oveissi/b01054d04132397a97bafa564f8f1c09 to your computer and use it in GitHub Desktop.
Save abbas-oveissi/b01054d04132397a97bafa564f8f1c09 to your computer and use it in GitHub Desktop.
class City(val id: Int, val name:String)
class Province(val id: Int ,val name:String)
fun getProvinces(): Observable<List<Province>>
fun getCityByProvinceId(val provinceId: Int): Observable<List<City>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment