From 7f0d5bd6737d841a52345ec0ffd0da24bebb9b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A4=D1=80=D0=BE=D0=BB=D0=BE=D0=B2?= Date: Sun, 29 Aug 2021 17:27:24 +0500 Subject: [PATCH] fix di in DrillingProgramService --- AsbCloudInfrastructure/Services/DrillingProgramService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AsbCloudInfrastructure/Services/DrillingProgramService.cs b/AsbCloudInfrastructure/Services/DrillingProgramService.cs index b8ccae5b..2594fbcd 100644 --- a/AsbCloudInfrastructure/Services/DrillingProgramService.cs +++ b/AsbCloudInfrastructure/Services/DrillingProgramService.cs @@ -16,10 +16,10 @@ namespace AsbCloudInfrastructure.Services public class DrillingProgramService : IDrillingProgramService { private readonly IFileService fileService; - private readonly WellService wellService; + private readonly IWellService wellService; private const int idFileCategoryPlan = 13; - public DrillingProgramService(IFileService fileService, WellService wellService) + public DrillingProgramService(IFileService fileService, IWellService wellService) { this.fileService = fileService; this.wellService = wellService;