Skip to content

Instantly share code, notes, and snippets.

@5AbhishekSaxena
Created December 2, 2022 22:57
Show Gist options
  • Save 5AbhishekSaxena/b6326d9f34e58c27781eeb46d4a4132c to your computer and use it in GitHub Desktop.
Save 5AbhishekSaxena/b6326d9f34e58c27781eeb46d4a4132c to your computer and use it in GitHub Desktop.
class NotificationService {
fun sendNotification(message: String) {
val emailNotification = EmailNotification() // <- here is the dependency
emailNotification.sendNotification(message)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment