Skip to content

Instantly share code, notes, and snippets.

@NikitaChizhov
Last active February 11, 2020 20:12
Show Gist options
  • Save NikitaChizhov/87e1316aa66b5e951548d871b48f5c60 to your computer and use it in GitHub Desktop.
Save NikitaChizhov/87e1316aa66b5e951548d871b48f5c60 to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
services
.AddLogging(configure =>
{
configure.AddConsole();
configure.SetMinimumLevel(LogLevel.Information);
})
.AddSingleton<IImportantDataProvider, ImportantDataProvider>()
.AddSingleton<IExampleService, ExampleService>()
.Decorate<IExampleService, ExampleServiceClassicDecorator>()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment