/
AMachine
/
MMDB_Backend
Обзор
Документация
Войти
/
AMachine
/
MMDB_Backend
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
MMDB.Application/Extensions/ServicesInjection.cs
18 строк
607 B
AssaultMachine
register notes service and repository in DI
18 май 2025, 19:38
18 май 2025, 19:38
92c6a79
Код
Авторство
О чём код?
using Microsoft.Extensions.DependencyInjection; using MMDB.Core.Abstract.Services; namespace MMDB.Application.Extensions; public static class ServicesInjection { public static IServiceCollection AddApplicationServices(this IServiceCollection services) { services.AddScoped<IPlayersService, PlayersService>(); services.AddScoped<IUsersService, UsersService>(); services.AddScoped<ITokensService, TokensService>(); services.AddScoped<IBansService, BansService>(); services.AddScoped<INotesService, NotesService>(); return services; } }