/
onimor
/
ASWRemoteViewerRev
Обзор
Документация
Войти
/
onimor
/
ASWRemoteViewerRev
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RemoteViewing/ASW.RemoteViewing/ASW.RemoteViewing.Client/Infrastructure/DI/RemoteClientRegistration.cs
27 строк
1 KB
onimor
Добавьте файлы проекта.
28 авг 2025, 13:00
28 авг 2025, 13:00
855ae9a
Код
Авторство
О чём код?
using ASW.RemoteViewing.Client.Clients; namespace ASW.RemoteViewing.Client.Infrastructure.Registrations; public static class RemoteClientRegistration { public static IServiceCollection AddRemoteClients(this IServiceCollection services) { services.AddScoped<RemoteAxesDistClient>(); services.AddScoped<RemoteAxesVelClient>(); services.AddScoped<RemoteAxesWeightClient>(); services.AddScoped<RemoteCameraClient>(); services.AddScoped<RemoteCarClient>(); services.AddScoped<RemoteCounterpartyClient>(); services.AddScoped<RemoteDriverClient>(); services.AddScoped<RemoteEmptyWeighingClient>(); services.AddScoped<RemoteGoodClient>(); services.AddScoped<RemotePhotosClient>(); services.AddScoped<RemotePostClient>(); services.AddScoped<RemotePostUsersClient>(); services.AddScoped<RemoteTrailerClient>(); services.AddScoped<RemoteWeighingClient>(); services.AddScoped<ExportClient>(); services.AddScoped<PlaceUserClient>(); services.AddScoped<IntegrationUserClient>(); return services; } }