Created
June 13, 2019 14:31
-
-
Save abbas-oveissi/b01054d04132397a97bafa564f8f1c09 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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