2024-06-30 21:02:55 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMaps.Operations;
|
2024-06-25 15:22:32 +05:00
|
|
|
|
using AsbCloudApp.Repositories;
|
|
|
|
|
using AsbCloudApp.Requests;
|
|
|
|
|
using AsbCloudApp.Services;
|
2024-06-30 21:02:55 +05:00
|
|
|
|
using AsbCloudDb.Model.ProcessMapPlan.Operations;
|
2024-06-25 15:22:32 +05:00
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Export;
|
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Parser;
|
|
|
|
|
|
2024-06-30 11:17:10 +05:00
|
|
|
|
namespace AsbCloudWebApi.Controllers.ProcessMaps.Operations;
|
2024-06-25 15:22:32 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план выставление
|
|
|
|
|
/// </summary>
|
2024-06-30 11:17:10 +05:00
|
|
|
|
public class ProcessMapPlanTFOrientationController :
|
|
|
|
|
ProcessMapPlanBaseController<ProcessMapPlanTFOrientation, ProcessMapPlanTFOrientationDto>
|
2024-06-25 15:22:32 +05:00
|
|
|
|
{
|
2024-06-30 11:17:10 +05:00
|
|
|
|
public ProcessMapPlanTFOrientationController(
|
|
|
|
|
IChangeLogRepository<ProcessMapPlanTFOrientationDto, ProcessMapPlanBaseRequestWithWell> repository,
|
2024-06-25 15:22:32 +05:00
|
|
|
|
IWellService wellService,
|
2024-06-30 11:17:10 +05:00
|
|
|
|
ProcessMapPlanTFOrientationParser parserService,
|
2024-06-25 15:22:32 +05:00
|
|
|
|
ITelemetryService telemetryService,
|
2024-06-30 11:17:10 +05:00
|
|
|
|
ProcessMapPlanTFOrientationExportService processMapPlanExportService)
|
2024-06-25 15:22:32 +05:00
|
|
|
|
: base(repository, wellService, parserService, processMapPlanExportService, telemetryService)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string TemplateFileName => "ЕЦП_шаблон_файла_РТК_план_выставление.xlsx";
|
|
|
|
|
}
|