Created
December 16, 2018 14:52
-
-
Save tonysneed/2e917f458cb51856794c841cf3a2778e to your computer and use it in GitHub Desktop.
Function Ctor 1
This file contains 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 Function() | |
{ | |
// Set up Dependency Injection | |
var serviceCollection = new ServiceCollection(); | |
ConfigureServices(serviceCollection); | |
var serviceProvider = serviceCollection.BuildServiceProvider(); | |
// TODO: Get service from DI system | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment