using Microsoft.Extensions.DependencyInjection; using SurveyLib.Core.Repositories; using SurveyLib.Infrastructure.EFCore.Repositories; namespace SurveyLib.Infrastructure.EFCore; public static class DependencyInjection { public static IServiceCollection AddSurveyLibInfrastructure(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); return services; } }