Last active
March 27, 2020 21:55
-
-
Save samueleresca/c390db286074976357c684d22a7ea0e0 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
public void Initializer() { | |
OtherClass localObj = new OtherClass(); | |
localObj.InitializeDependencies(); | |
Handler(localObj); | |
} | |
public void Handler(OtherClass localObj) { | |
localObj.Execute("value"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment