Skip to content

Instantly share code, notes, and snippets.

@NsAveek
Created October 12, 2018 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NsAveek/472d91e2d868a85992bf23c13b88d178 to your computer and use it in GitHub Desktop.
Save NsAveek/472d91e2d868a85992bf23c13b88d178 to your computer and use it in GitHub Desktop.
Repository interface
interface IStoreRepository {
fun saveStudentData(student: Student) : Boolean
fun updateStudentData(student: Student) : Int
fun deleteStudentData (student: Student) : Boolean
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment