From df4927d9c15cd22e5651172766e8c8f577f74ac6 Mon Sep 17 00:00:00 2001 From: Mikhail Kuznetsov Date: Fri, 15 May 2026 19:05:36 +1000 Subject: [PATCH] =?UTF-8?q?feat(aihitLoader):=20=D0=94=D0=BE=D0=B1=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D0=BE=20=D0=BF=D0=BE=D0=BB=D0=B5=20"?= =?UTF-8?q?=D0=A2=D0=B8=D0=BF=20=D0=B8=D0=BD=D1=84=D1=80=D0=B0=D1=81=D1=82?= =?UTF-8?q?=D1=80=D1=83=D0=BA=D1=82=D1=83=D1=80=D0=BD=D0=BE=D0=B3=D0=BE=20?= =?UTF-8?q?=D1=81=D0=B5=D1=80=D0=B2=D0=B8=D1=81=D0=B0"=20=D0=BD=D0=B0?= =?UTF-8?q?=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=9F?= =?UTF-8?q?=D0=A2=D0=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PARR.AIHITMainLoader/AihitMainLoaderInstaller.cs | 3 +-- PARR.AIHITMainLoader/Models/PtkData.cs | 5 ++++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/PARR.AIHITMainLoader/AihitMainLoaderInstaller.cs b/PARR.AIHITMainLoader/AihitMainLoaderInstaller.cs index 3b75090b..9112fd21 100644 --- a/PARR.AIHITMainLoader/AihitMainLoaderInstaller.cs +++ b/PARR.AIHITMainLoader/AihitMainLoaderInstaller.cs @@ -4,7 +4,6 @@ using Microsoft.Extensions.DependencyInjection; using PARR.AIHITMainLoader.Context; using PARR.AIHITMainLoader.Services; using PARR.AIHITMainLoader.Settings; -using PARR.Core; using PARR.Infrastructure; namespace PARR.AIHITMainLoader @@ -13,7 +12,7 @@ namespace PARR.AIHITMainLoader { public static void InstallAihitMainLoaderServices(this IServiceCollection services, IConfiguration configuration) { - services.AddCoreServices(configuration); + //services.AddCoreServices(configuration); services.AddInfrastructureServices(configuration); var settings = new WorkerSettings(); diff --git a/PARR.AIHITMainLoader/Models/PtkData.cs b/PARR.AIHITMainLoader/Models/PtkData.cs index 3694ae4b..30d5c3fd 100644 --- a/PARR.AIHITMainLoader/Models/PtkData.cs +++ b/PARR.AIHITMainLoader/Models/PtkData.cs @@ -103,6 +103,8 @@ namespace PARR.AIHITMainLoader.Models [Column("ПАРР тег")] public string? Tag { get; set; } + [Column("Тип инфраструктурного сервиса")] + public string? InfrastructureServiceType { get; set; } public AihitMainDataMq ToMainData() { @@ -140,7 +142,8 @@ namespace PARR.AIHITMainLoader.Models {"ЗО_РГ", WorkGroupResponseArea }, {"Холодный резерв", ColdReserve.ToString() }, {"ДОПОЛНИТЕЛЬНАЯ_ИНФОРМАЦИЯ", AdditionalInformation }, - {"ПАРР тег", Tag } + {"ПАРР тег", Tag }, + {"Тип инфраструктурного сервиса", InfrastructureServiceType }, } }; }