Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created May 12, 2019 14:13
Show Gist options
  • Save kasunkv/1dd9a95a7f98c55ca3147165e7e997cf to your computer and use it in GitHub Desktop.
Save kasunkv/1dd9a95a7f98c55ca3147165e7e997cf to your computer and use it in GitHub Desktop.
ASP.Net Core Dependency Injection - Implementation Factory
services.AddScoped<IDiscountProcessor, OrderDiscountProcessor>();
services.AddScoped<Discount>(sp =>
{
return new DiscountBuilder()
.WithMinimumBillAmount(1000)
.WithMinimumItemCount(3)
.WithPercentage(10)
.Build();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment