Last active
June 13, 2019 14:33
-
-
Save abbas-oveissi/25f0922846386f13a831e7f39fd573cf 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
//rxjava-challenge | |
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