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 }, } }; }