2024-06-30 21:02:55 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMaps.Operations;
|
2024-06-28 15:08:50 +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-28 15:08:50 +05:00
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Export;
|
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Parser;
|
|
|
|
|
|
2024-06-30 13:33:32 +05:00
|
|
|
|
namespace AsbCloudWebApi.Controllers.ProcessMaps.Operations;
|
2024-06-28 15:08:50 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план выход на плановый расход
|
|
|
|
|
/// </summary>
|
2024-06-30 13:33:32 +05:00
|
|
|
|
public class ProcessMapPlanSwitchingToTheModeController :
|
|
|
|
|
ProcessMapPlanBaseController<ProcessMapPlanSwitchingToTheMode, ProcessMapPlanSwitchingToTheModeDto>
|
2024-06-28 15:08:50 +05:00
|
|
|
|
{
|
2024-06-30 13:33:32 +05:00
|
|
|
|
public ProcessMapPlanSwitchingToTheModeController(
|
|
|
|
|
IChangeLogRepository<ProcessMapPlanSwitchingToTheModeDto, ProcessMapPlanBaseRequestWithWell> repository,
|
2024-06-28 15:08:50 +05:00
|
|
|
|
IWellService wellService,
|
2024-06-30 13:33:32 +05:00
|
|
|
|
ProcessMapPlanSwitchingToTheModeParser parserService,
|
2024-06-28 15:08:50 +05:00
|
|
|
|
ITelemetryService telemetryService,
|
2024-06-30 13:33:32 +05:00
|
|
|
|
ProcessMapPlanSwitchingToTheModeExportService processMapPlanExportService)
|
2024-06-28 15:08:50 +05:00
|
|
|
|
: base(repository, wellService, parserService, processMapPlanExportService, telemetryService)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string TemplateFileName => "ЕЦП_шаблон_файла_РТК_план_выход_на_плановый_расход.xlsx";
|
|
|
|
|
}
|