2024-06-26 16:17:19 +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 16:17:19 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план осцилляция
|
|
|
|
|
/// </summary>
|
2024-06-29 23:34:37 +05:00
|
|
|
|
public class ProcessMapPlanOscillationController :
|
2024-06-29 21:26:43 +05:00
|
|
|
|
ProcessMapPlanBaseController<ProcessMapPlanOscillation, ProcessMapPlanOscillationDto>
|
2024-06-26 16:17:19 +05:00
|
|
|
|
{
|
2024-06-29 21:26:43 +05:00
|
|
|
|
public ProcessMapPlanOscillationController(
|
|
|
|
|
IChangeLogRepository<ProcessMapPlanOscillationDto, ProcessMapPlanBaseRequestWithWell> repository,
|
2024-06-26 16:17:19 +05:00
|
|
|
|
IWellService wellService,
|
2024-06-29 21:26:43 +05:00
|
|
|
|
ProcessMapPlanOscillationParser parserService,
|
2024-06-26 16:17:19 +05:00
|
|
|
|
ITelemetryService telemetryService,
|
2024-06-29 21:26:43 +05:00
|
|
|
|
ProcessMapPlanOscillationExportService processMapPlanExportService)
|
2024-06-26 16:17:19 +05:00
|
|
|
|
: base(repository, wellService, parserService, processMapPlanExportService, telemetryService)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string TemplateFileName => "ЕЦП_шаблон_файла_РТК_план_осцилляция.xlsx";
|
|
|
|
|
}
|