I have a class that takes three constructor arguments. In my composition root I want to define/override only one of the three constructor arguments; the oth
Example: Service Cons.:
public SkillsService(IRepositoryBase repositoryCategory, int categoryId)
Startup:
services.AddScoped(i => new SkillsService(services.BuildServiceProvider().GetService>(), AppSettingsFeatures.Skills));