Skip to content

Instantly share code, notes, and snippets.

@dnno
Last active June 3, 2019 18:43
Show Gist options
  • Select an option

  • Save dnno/aa581a06bdf2f8908779c98f116b037f to your computer and use it in GitHub Desktop.

Select an option

Save dnno/aa581a06bdf2f8908779c98f116b037f to your computer and use it in GitHub Desktop.
interface CityService {
fun retrieveCity(cityId: Long): CityDto?
fun retrieveCities(): List<CityDto>
fun addCity(city: CreateCityDto): CityDto
fun updateCity(id: Long, city: UpdateCityDto): CityDto
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment