Skip to content

Instantly share code, notes, and snippets.

@ismailgungor
Created April 3, 2019 13:00
Show Gist options
  • Save ismailgungor/90882798f8f622d05921656f98e87057 to your computer and use it in GitHub Desktop.
Save ismailgungor/90882798f8f622d05921656f98e87057 to your computer and use it in GitHub Desktop.
class Cafe(val personnel: Personnel) {
fun getProduct(name:String): Product{
return personnel.prepareProduct(name)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment