We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dd1be8 commit d010251Copy full SHA for d010251
IntelliTect.TestTools.TestFramework/IntelliTect.TestTools.TestFramework/TestBuilder.cs
@@ -79,9 +79,9 @@ public TestBuilder AddDependencyService<T>()
79
return this;
80
}
81
82
- public TestBuilder AddDependencyService<TService,TImplementation>()
+ public TestBuilder AddDependencyService<TServiceType,TImplementationType>()
83
{
84
- Services.AddScoped(typeof(TService), typeof(TImplementation));
+ Services.AddScoped(typeof(TServiceType), typeof(TImplementationType));
85
86
87
0 commit comments