Skip to content

Instantly share code, notes, and snippets.

@trnktms
Created February 9, 2023 10:52
Embed
What would you like to do?
namespace Feature.DI
{
public class RegisterContainer : IServicesConfigurator
{
public void Configure(IServiceCollection serviceCollection)
{
serviceCollection.AddTransient<ItemAuthorizationHelper, CustomItemAuthorizationHelper>();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment