Allows to use the decorator pattern for ASP.NET Core dependency injection
services.AddSingleton<IRepository, Repository>();
services.Decorate<IRepository, LogRepository>();
services.Decorate<IRepository, PermissionRepository>();
Allows to use the decorator pattern for ASP.NET Core dependency injection
C#MIT