From 1affa34b0781df936772862cdef2433cfa12e622 Mon Sep 17 00:00:00 2001 From: Mikhail Kuznetsov Date: Fri, 3 Jul 2026 11:25:39 +1000 Subject: [PATCH] =?UTF-8?q?fix(core,=20api,=20templateMatcher,=20nextRun,?= =?UTF-8?q?=20templateDestributor,=20jobAutoControl):=20=D0=98=D1=81=D0=BF?= =?UTF-8?q?=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20using=20?= =?UTF-8?q?=D0=BF=D0=BE=D1=81=D0=BB=D0=B5=20=D0=BF=D1=80=D0=B5=D0=B4=D1=8B?= =?UTF-8?q?=D0=B4=D1=83=D1=89=D0=B5=D0=B3=D0=BE=20=D1=80=D0=B0=D1=84=D0=B0?= =?UTF-8?q?=D0=BA=D1=82=D0=BE=D1=80=D0=B8=D0=BD=D0=B3=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PARR.API/Controllers/V1/JobGroupUpdateNextRunController.cs | 2 +- PARR.API/Controllers/V1/JobUnitPreviewController.cs | 2 +- .../V1/Statistics/StatTemplateDistributionController.cs | 2 +- PARR.API/Validators/DistributeRequestValidator.cs | 2 +- PARR.Core/Services/NextRunServices/NextRunService.cs | 2 +- PARR.JobAutoControl/JobAutoControlManager.cs | 2 +- PARR.NextRun/NextRunRabbitService.cs | 2 +- PARR.TemplateDistributor/Services/ValidatorService.cs | 2 +- .../Services/Implementations/JobGroupValidatorService.cs | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/PARR.API/Controllers/V1/JobGroupUpdateNextRunController.cs b/PARR.API/Controllers/V1/JobGroupUpdateNextRunController.cs index cb00cbf0..731c66b8 100644 --- a/PARR.API/Controllers/V1/JobGroupUpdateNextRunController.cs +++ b/PARR.API/Controllers/V1/JobGroupUpdateNextRunController.cs @@ -6,7 +6,7 @@ using PARR.API.Contracts.V1.Responses.Base; using PARR.API.Controllers.V1.Base; using PARR.API.Settings; using PARR.Core.Common.Interfaces.RabbitServices; -using PARR.Core.Repositories.Interfaces.Job; +using PARR.Core.Repositories.Interfaces.JobGroupRepositories; using PARR.Domain.Common.Rabbit.Messages; using PARR.Domain.Common.Roles; using PARR.Domain.Entities.Base.History; diff --git a/PARR.API/Controllers/V1/JobUnitPreviewController.cs b/PARR.API/Controllers/V1/JobUnitPreviewController.cs index cb94baa5..87c1844e 100644 --- a/PARR.API/Controllers/V1/JobUnitPreviewController.cs +++ b/PARR.API/Controllers/V1/JobUnitPreviewController.cs @@ -8,7 +8,7 @@ using PARR.API.Contracts.V1.Requests; using PARR.API.Contracts.V1.Responses; using PARR.API.Contracts.V1.Responses.Base; using PARR.API.Controllers.V1.Base; -using PARR.Core.Repositories.Interfaces.Job; +using PARR.Core.Repositories.Interfaces.JobGroupRepositories; using PARR.Core.Repositories.Interfaces.Unit; using PARR.Core.Services.UnitFilterService; using PARR.Domain.Common.Roles; diff --git a/PARR.API/Controllers/V1/Statistics/StatTemplateDistributionController.cs b/PARR.API/Controllers/V1/Statistics/StatTemplateDistributionController.cs index e20c0e79..85713b55 100644 --- a/PARR.API/Controllers/V1/Statistics/StatTemplateDistributionController.cs +++ b/PARR.API/Controllers/V1/Statistics/StatTemplateDistributionController.cs @@ -9,7 +9,7 @@ using PARR.API.Contracts.V1.Responses.Base; using PARR.API.Contracts.V1.Responses.Statistics; using PARR.API.Controllers.V1.Base; using PARR.Core.Repositories.Interfaces; -using PARR.Core.Repositories.Interfaces.Job; +using PARR.Core.Repositories.Interfaces.JobGroupRepositories; using PARR.Core.Repositories.Interfaces.Schedule; using PARR.Core.Services.NextRunServices; using PARR.Core.Services.Shortcodes; diff --git a/PARR.API/Validators/DistributeRequestValidator.cs b/PARR.API/Validators/DistributeRequestValidator.cs index 36625915..3ea0f09a 100644 --- a/PARR.API/Validators/DistributeRequestValidator.cs +++ b/PARR.API/Validators/DistributeRequestValidator.cs @@ -1,7 +1,7 @@ using FluentValidation; using Microsoft.EntityFrameworkCore; using PARR.API.Contracts.V1.Requests; -using PARR.Core.Repositories.Interfaces.Job; +using PARR.Core.Repositories.Interfaces.JobGroupRepositories; namespace PARR.API.Validators { diff --git a/PARR.Core/Services/NextRunServices/NextRunService.cs b/PARR.Core/Services/NextRunServices/NextRunService.cs index f22a9a93..f5ad9c9a 100644 --- a/PARR.Core/Services/NextRunServices/NextRunService.cs +++ b/PARR.Core/Services/NextRunServices/NextRunService.cs @@ -1,7 +1,7 @@ using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using PARR.Core.Repositories.Interfaces; -using PARR.Core.Repositories.Interfaces.Job; +using PARR.Core.Repositories.Interfaces.JobGroupRepositories; using PARR.Core.Repositories.Interfaces.Schedule; using PARR.Core.Services.NextRunServices.Models; using PARR.Core.Services.NextRunServices.Subservices; diff --git a/PARR.JobAutoControl/JobAutoControlManager.cs b/PARR.JobAutoControl/JobAutoControlManager.cs index ac0c60e4..1816258b 100644 --- a/PARR.JobAutoControl/JobAutoControlManager.cs +++ b/PARR.JobAutoControl/JobAutoControlManager.cs @@ -3,8 +3,8 @@ using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using PARR.Core.Common.Interfaces; using PARR.Core.Common.Interfaces.RabbitServices; -using PARR.Core.Repositories.Interfaces.Job; using PARR.Core.Repositories.Interfaces.JobGroupRepositories; +using PARR.Core.Repositories.Interfaces.JobRepositories; using PARR.Domain.Common.Rabbit.Messages; using PARR.Domain.Entities.Base.History; using PARR.Domain.Enums; diff --git a/PARR.NextRun/NextRunRabbitService.cs b/PARR.NextRun/NextRunRabbitService.cs index db95e562..56df1fe2 100644 --- a/PARR.NextRun/NextRunRabbitService.cs +++ b/PARR.NextRun/NextRunRabbitService.cs @@ -3,7 +3,7 @@ using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using PARR.Core.Common.Interfaces; using PARR.Core.Common.Interfaces.RabbitServices; -using PARR.Core.Repositories.Interfaces.Job; +using PARR.Core.Repositories.Interfaces.JobGroupRepositories; using PARR.Domain.Common.Rabbit.Messages; using PARR.NextRun.Services; using PARR.NextRun.Settings; diff --git a/PARR.TemplateDistributor/Services/ValidatorService.cs b/PARR.TemplateDistributor/Services/ValidatorService.cs index 59a9d849..28fd8609 100644 --- a/PARR.TemplateDistributor/Services/ValidatorService.cs +++ b/PARR.TemplateDistributor/Services/ValidatorService.cs @@ -1,7 +1,7 @@ using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; -using PARR.Core.Repositories.Interfaces.Job; +using PARR.Core.Repositories.Interfaces.JobGroupRepositories; using PARR.Domain.Entities.JobGroupEntities; namespace PARR.TemplateDistributor.Services diff --git a/PARR.TemplateMatcher/Services/Implementations/JobGroupValidatorService.cs b/PARR.TemplateMatcher/Services/Implementations/JobGroupValidatorService.cs index 38c47ba7..e12191da 100644 --- a/PARR.TemplateMatcher/Services/Implementations/JobGroupValidatorService.cs +++ b/PARR.TemplateMatcher/Services/Implementations/JobGroupValidatorService.cs @@ -1,5 +1,5 @@ using Microsoft.Extensions.Logging; -using PARR.Core.Repositories.Interfaces.Job; +using PARR.Core.Repositories.Interfaces.JobGroupRepositories; using PARR.TemplateMatcher.Services.Interfaces; namespace PARR.TemplateMatcher.Services.Implementations