using Govor.ConsoleClient.Services.Implementations; using Govor.ConsoleClient.Services.Interfaces; using Microsoft.Extensions.DependencyInjection; namespace Govor.ConsoleClient.Services.Extensions; public static class ServiceCollectionExtensions { public static IServiceCollection AddApplicationServices(this IServiceCollection services) { services.AddSingleton(); services.AddSingleton(); services.AddSingleton(); services.AddSingleton(); services.AddSingleton(sp => sp.GetRequiredService()); return services; } }