Created
November 6, 2022 14:37
-
-
Save halilozel1903/31bedb74be88a34d6fe6a13b3360918d 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
companion object { | |
private var instance: BusinessManager? = null | |
fun getInstance(): BusinessManager { | |
if (instance == null) { | |
instance = BusinessManager() | |
} | |
return instance as BusinessManager | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment