Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Last active March 27, 2020 21:55
Show Gist options
  • Save samueleresca/c390db286074976357c684d22a7ea0e0 to your computer and use it in GitHub Desktop.
Save samueleresca/c390db286074976357c684d22a7ea0e0 to your computer and use it in GitHub Desktop.
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