/AspNetCore.Decorator

Allows to use the decorator pattern for ASP.NET Core dependency injection

Primary LanguageC#MIT LicenseMIT

AspNetCore.Decorator

Allows to use the decorator pattern for ASP.NET Core dependency injection

How to use it

services.AddSingleton<IRepository, Repository>();

services.Decorate<IRepository, LogRepository>();
services.Decorate<IRepository, PermissionRepository>();