2024-06-26 11:42:10 +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-29 23:34:37 +05:00
|
|
|
|
namespace AsbCloudWebApi.Controllers.ProcessMaps.Functions;
|
2024-06-26 11:42:10 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план shock test
|
|
|
|
|
/// </summary>
|
2024-06-29 23:34:37 +05:00
|
|
|
|
public class ProcessMapPlanShockTestController :
|
2024-06-29 23:24:53 +05:00
|
|
|
|
ProcessMapPlanBaseController<ProcessMapPlanShockTest, ProcessMapPlanShockTestDto>
|
2024-06-26 11:42:10 +05:00
|
|
|
|
{
|
2024-06-29 23:24:53 +05:00
|
|
|
|
public ProcessMapPlanShockTestController(
|
|
|
|
|
IChangeLogRepository<ProcessMapPlanShockTestDto, ProcessMapPlanBaseRequestWithWell> repository,
|
2024-06-26 11:42:10 +05:00
|
|
|
|
IWellService wellService,
|
2024-06-29 23:24:53 +05:00
|
|
|
|
ProcessMapPlanShockTestParser parserService,
|
2024-06-26 11:42:10 +05:00
|
|
|
|
ITelemetryService telemetryService,
|
2024-06-29 23:24:53 +05:00
|
|
|
|
ProcessMapPlanShockTestExportService processMapPlanExportService)
|
2024-06-26 11:42:10 +05:00
|
|
|
|
: base(repository, wellService, parserService, processMapPlanExportService, telemetryService)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string TemplateFileName => "ЕЦП_шаблон_файла_РТК_план_shock_test.xlsx";
|
|
|
|
|
}
|