1 implementation of IAnotherService
DependencyInjectionApp (1)
Program.cs (1)
61class AnotherService : IAnotherService
2 references to IAnotherService
DependencyInjectionApp (2)
Program.cs (2)
25services.AddScoped<IAnotherService, AnotherService>(); 33context.RequestServices.GetService<IService<IAnotherService>>();