fix di in DrillingProgramService

This commit is contained in:
Фролов 2021-08-29 17:27:24 +05:00
parent 14cf99a1dd
commit 7f0d5bd673

View File

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