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