2024-07-04 11:02:45 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMaps.Functions;
|
2024-06-26 13:01:06 +05:00
|
|
|
|
using AsbCloudApp.Repositories;
|
|
|
|
|
using AsbCloudApp.Requests;
|
|
|
|
|
using AsbCloudApp.Services;
|
2024-06-30 21:02:55 +05:00
|
|
|
|
using AsbCloudDb.Model.ProcessMapPlan.Functions;
|
2024-06-26 13:01:06 +05:00
|
|
|
|
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 13:01:06 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план демпфер
|
|
|
|
|
/// </summary>
|
2024-06-29 23:34:37 +05:00
|
|
|
|
public class ProcessMapPlanDamperController :
|
2024-06-29 23:32:34 +05:00
|
|
|
|
ProcessMapPlanBaseController<ProcessMapPlanDamper, ProcessMapPlanDamperDto>
|
2024-06-26 13:01:06 +05:00
|
|
|
|
{
|
2024-06-29 23:32:34 +05:00
|
|
|
|
public ProcessMapPlanDamperController(
|
|
|
|
|
IChangeLogRepository<ProcessMapPlanDamperDto, ProcessMapPlanBaseRequestWithWell> repository,
|
2024-06-26 13:01:06 +05:00
|
|
|
|
IWellService wellService,
|
2024-06-29 23:32:34 +05:00
|
|
|
|
ProcessMapPlanDamperParser parserService,
|
2024-06-26 13:01:06 +05:00
|
|
|
|
ITelemetryService telemetryService,
|
2024-06-29 23:32:34 +05:00
|
|
|
|
ProcessMapPlanDamperExportService processMapPlanExportService)
|
2024-06-26 13:01:06 +05:00
|
|
|
|
: base(repository, wellService, parserService, processMapPlanExportService, telemetryService)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string TemplateFileName => "ЕЦП_шаблон_файла_РТК_план_демпфер.xlsx";
|
|
|
|
|
}
|