2024-06-25 10:19:47 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMaps;
|
|
|
|
|
using AsbCloudApp.Repositories;
|
|
|
|
|
using AsbCloudApp.Requests;
|
|
|
|
|
using AsbCloudApp.Services;
|
|
|
|
|
using AsbCloudDb.Model.ProcessMaps;
|
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Export;
|
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Parser;
|
|
|
|
|
|
2024-06-30 11:46:16 +05:00
|
|
|
|
namespace AsbCloudWebApi.Controllers.ProcessMaps.Operations;
|
2024-06-25 10:19:47 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план позиционирование над забоем
|
|
|
|
|
/// </summary>
|
2024-06-30 11:46:16 +05:00
|
|
|
|
public class ProcessMapPlanPositioningOffTheBottomController :
|
|
|
|
|
ProcessMapPlanBaseController<ProcessMapPlanPositioningOffTheBottom, ProcessMapPlanPositioningOffTheBottomDto>
|
2024-06-25 10:19:47 +05:00
|
|
|
|
{
|
2024-06-30 11:46:16 +05:00
|
|
|
|
public ProcessMapPlanPositioningOffTheBottomController(
|
|
|
|
|
IChangeLogRepository<ProcessMapPlanPositioningOffTheBottomDto, ProcessMapPlanBaseRequestWithWell> repository,
|
2024-06-25 10:19:47 +05:00
|
|
|
|
IWellService wellService,
|
2024-06-30 11:46:16 +05:00
|
|
|
|
ProcessMapPlanPositioningOffTheBottomParser parserService,
|
2024-06-25 10:19:47 +05:00
|
|
|
|
ITelemetryService telemetryService,
|
2024-06-30 11:46:16 +05:00
|
|
|
|
ProcessMapPlanPositioningOffTheBottomExportService processMapPlanExportService)
|
2024-06-25 10:19:47 +05:00
|
|
|
|
: base(repository, wellService, parserService, processMapPlanExportService, telemetryService)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string TemplateFileName => "ЕЦП_шаблон_файла_РТК_план_позиционирование_над_забоем.xlsx";
|
|
|
|
|
}
|