Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created May 7, 2019 15:49
Show Gist options
  • Save kasunkv/60697583a4ae1c2e7d3c7144a722c7af to your computer and use it in GitHub Desktop.
Save kasunkv/60697583a4ae1c2e7d3c7144a722c7af to your computer and use it in GitHub Desktop.
Register multiple implementations - Method 01
services.AddScoped<IDiscountProcessor, OrderDiscountProcessor>();
services.AddScoped<IDiscount, SeasonalDiscount>();
services.AddScoped<IDiscount, LargeOrderDiscount>();
services.AddScoped<IDiscount, ThreeOrModeDiscount>();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment