Skip to content

Instantly share code, notes, and snippets.

@devmobasa
Created January 18, 2020 09:43
Show Gist options
  • Select an option

  • Save devmobasa/2216dca6e3013bd021a7931583be6c39 to your computer and use it in GitHub Desktop.

Select an option

Save devmobasa/2216dca6e3013bd021a7931583be6c39 to your computer and use it in GitHub Desktop.
ASP.NET Core DI
public void ConfigureServices(IServiceCollection services)
{
services.AddScoped<IMyScopedService, MyScopedService>();
services.AddSingleton<IMyConnectionManager, MyConnectionManager>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment