From fd15622ad1a2f2c4df10bab1304ec50dcf2bb797 Mon Sep 17 00:00:00 2001 From: ngfrolov Date: Thu, 22 Feb 2024 14:00:20 +0500 Subject: [PATCH] =?UTF-8?q?WellOperationExportService=20=D1=83=D0=B4=D0=B0?= =?UTF-8?q?=D0=BB=D0=B8=D1=82=D1=8C=20=D0=BD=D0=B5=D0=B8=D1=81=D0=BF=D0=BE?= =?UTF-8?q?=D0=BB=D1=8C=D0=B7=D1=83=D0=B5=D0=BC=D1=83=D1=8E=20=D0=B7=D0=B0?= =?UTF-8?q?=D0=B2=D0=B8=D1=81=D0=B8=D0=BC=D0=BE=D1=81=D1=82=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WellOperationImport/WellOperationExportService.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/AsbCloudInfrastructure/Services/WellOperationImport/WellOperationExportService.cs b/AsbCloudInfrastructure/Services/WellOperationImport/WellOperationExportService.cs index 142b751f..96e640b8 100644 --- a/AsbCloudInfrastructure/Services/WellOperationImport/WellOperationExportService.cs +++ b/AsbCloudInfrastructure/Services/WellOperationImport/WellOperationExportService.cs @@ -6,7 +6,6 @@ using System.Threading.Tasks; using AsbCloudApp.Data; using AsbCloudApp.Repositories; using AsbCloudApp.Requests; -using AsbCloudApp.Services; using AsbCloudApp.Services.WellOperationImport; using AsbCloudInfrastructure.Services.WellOperationImport.Constants; using ClosedXML.Excel; @@ -15,20 +14,16 @@ namespace AsbCloudInfrastructure.Services.WellOperationImport; public class WellOperationExportService : IWellOperationExportService { - //TODO: удалить неиспользуемую зависимость private readonly IWellOperationRepository wellOperationRepository; - private readonly IWellService wellService; private readonly IWellOperationImportTemplateService wellOperationImportTemplateService; private readonly IWellOperationCategoryRepository wellOperationCategoryRepository; public WellOperationExportService( IWellOperationRepository wellOperationRepository, - IWellService wellService, IWellOperationImportTemplateService wellOperationImportTemplateService, IWellOperationCategoryRepository wellOperationCategoryRepository) { this.wellOperationRepository = wellOperationRepository; - this.wellService = wellService; this.wellOperationImportTemplateService = wellOperationImportTemplateService; this.wellOperationCategoryRepository = wellOperationCategoryRepository; }