forked from ddrilling/AsbCloudServer
WellOperationExportService удалить неиспользуемую зависимость
This commit is contained in:
parent
adfd1ad597
commit
fd15622ad1
@ -6,7 +6,6 @@ using System.Threading.Tasks;
|
|||||||
using AsbCloudApp.Data;
|
using AsbCloudApp.Data;
|
||||||
using AsbCloudApp.Repositories;
|
using AsbCloudApp.Repositories;
|
||||||
using AsbCloudApp.Requests;
|
using AsbCloudApp.Requests;
|
||||||
using AsbCloudApp.Services;
|
|
||||||
using AsbCloudApp.Services.WellOperationImport;
|
using AsbCloudApp.Services.WellOperationImport;
|
||||||
using AsbCloudInfrastructure.Services.WellOperationImport.Constants;
|
using AsbCloudInfrastructure.Services.WellOperationImport.Constants;
|
||||||
using ClosedXML.Excel;
|
using ClosedXML.Excel;
|
||||||
@ -15,20 +14,16 @@ namespace AsbCloudInfrastructure.Services.WellOperationImport;
|
|||||||
|
|
||||||
public class WellOperationExportService : IWellOperationExportService
|
public class WellOperationExportService : IWellOperationExportService
|
||||||
{
|
{
|
||||||
//TODO: удалить неиспользуемую зависимость
|
|
||||||
private readonly IWellOperationRepository wellOperationRepository;
|
private readonly IWellOperationRepository wellOperationRepository;
|
||||||
private readonly IWellService wellService;
|
|
||||||
private readonly IWellOperationImportTemplateService wellOperationImportTemplateService;
|
private readonly IWellOperationImportTemplateService wellOperationImportTemplateService;
|
||||||
private readonly IWellOperationCategoryRepository wellOperationCategoryRepository;
|
private readonly IWellOperationCategoryRepository wellOperationCategoryRepository;
|
||||||
|
|
||||||
public WellOperationExportService(
|
public WellOperationExportService(
|
||||||
IWellOperationRepository wellOperationRepository,
|
IWellOperationRepository wellOperationRepository,
|
||||||
IWellService wellService,
|
|
||||||
IWellOperationImportTemplateService wellOperationImportTemplateService,
|
IWellOperationImportTemplateService wellOperationImportTemplateService,
|
||||||
IWellOperationCategoryRepository wellOperationCategoryRepository)
|
IWellOperationCategoryRepository wellOperationCategoryRepository)
|
||||||
{
|
{
|
||||||
this.wellOperationRepository = wellOperationRepository;
|
this.wellOperationRepository = wellOperationRepository;
|
||||||
this.wellService = wellService;
|
|
||||||
this.wellOperationImportTemplateService = wellOperationImportTemplateService;
|
this.wellOperationImportTemplateService = wellOperationImportTemplateService;
|
||||||
this.wellOperationCategoryRepository = wellOperationCategoryRepository;
|
this.wellOperationCategoryRepository = wellOperationCategoryRepository;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user