From 19882da4657993b5462f5f4ec0e92a52d3cb34d0 Mon Sep 17 00:00:00 2001 From: Mikhail Kuznetsov Date: Thu, 11 Sep 2025 16:22:08 +1000 Subject: [PATCH] =?UTF-8?q?fix(api):=20JobController=20=D1=83=D0=B4=D0=B0?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D1=8B=20=D0=BB=D0=B8=D1=88=D0=BD=D0=B8=D0=B5?= =?UTF-8?q?=20=D0=B2=D0=B0=D0=BB=D0=B8=D0=B4=D0=B0=D1=82=D0=BE=D1=80=D1=8B?= =?UTF-8?q?.=20=D0=9F=D1=80=D0=B8=20=D0=B1=D0=B8=D0=BB=D0=B4=D0=B5=20?= =?UTF-8?q?=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B8=20=D0=BD=D0=B5=20=D0=B1?= =?UTF-8?q?=D1=8B=D0=BB=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PARR.API/Controllers/V1/JobController.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/PARR.API/Controllers/V1/JobController.cs b/PARR.API/Controllers/V1/JobController.cs index a3057fa6..67be7b86 100644 --- a/PARR.API/Controllers/V1/JobController.cs +++ b/PARR.API/Controllers/V1/JobController.cs @@ -35,9 +35,6 @@ namespace PARR.API.Controllers.V1 private readonly ITemplateService templateService; private readonly IJobGroupService jobGroupService; private readonly IValidator jobValidator; - private readonly IValidator unitFilterValidator; - private readonly IValidator fieldFilterValidator; - private readonly IValidator relationshipFilterValidator; private readonly IUnitFilterService unitFilterService; private readonly IUnitService unitService; @@ -49,9 +46,6 @@ namespace PARR.API.Controllers.V1 ITemplateService templateService, IJobGroupService jobGroupService, IValidator jobValidator, - IValidator unitFilterValidator, - IValidator fieldFilterValidator, - IValidator relationshipFilterValidator, IUnitFilterService unitFilterService, IUnitService unitService ) @@ -63,9 +57,6 @@ namespace PARR.API.Controllers.V1 this.templateService = templateService; this.jobGroupService = jobGroupService; this.jobValidator = jobValidator; - this.unitFilterValidator = unitFilterValidator; - this.fieldFilterValidator = fieldFilterValidator; - this.relationshipFilterValidator = relationshipFilterValidator; this.unitFilterService = unitFilterService; this.unitService = unitService; }