Files
Govor/Govor.ConsoleClient/DependencyInjection.cs
2025-07-19 23:18:08 +07:00

46 lines
1.3 KiB
C#

using System.Reflection;
using Govor.ConsoleClient.Commands;
using Govor.ConsoleClient.Services;
using Govor.ConsoleClient.Services.Extensions;
using Govor.ConsoleClient.Services.Interfaces;
using Govor.ConsoleClient.Services.Middleware;
using Microsoft.Extensions.DependencyInjection;
namespace Govor.ConsoleClient;
public static class DependencyInjection
{
public static IServiceProvider Configure()
{
var services = new ServiceCollection();
// Регистрация команд
services.AddCommands();
// Сервисы
services.AddApplicationServices();
services.AddSingleton<CommandContext>();
// Middleware
services.AddSingleton<ICommandMiddleware, ExceptionHandlingMiddleware>();
return services.BuildServiceProvider();
}
public static IServiceCollection AddCommands(this IServiceCollection services)
{
var commandTypes = Assembly.GetExecutingAssembly()
.GetTypes()
.Where(t => typeof(ICommand).IsAssignableFrom(t) && !t.IsInterface && !t.IsAbstract);
foreach (var type in commandTypes)
{
services.AddTransient(typeof(ICommand), type);
services.AddTransient(type); // Для прямого внедрения
}
return services;
}
}