2024-02-21 15:08:51 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMaps;
|
|
|
|
|
using AsbCloudApp.Repositories;
|
|
|
|
|
using AsbCloudApp.Requests;
|
|
|
|
|
using AsbCloudApp.Services;
|
2024-06-04 16:55:44 +05:00
|
|
|
|
using AsbCloudDb.Model.ProcessMaps;
|
2024-03-14 10:30:25 +05:00
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Export;
|
2024-02-21 15:08:51 +05:00
|
|
|
|
using AsbCloudInfrastructure.Services.ProcessMapPlan.Parser;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudWebApi.Controllers.ProcessMaps;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// РТК план проработка
|
|
|
|
|
/// </summary>
|
2024-06-04 16:55:44 +05:00
|
|
|
|
public class ProcessMapPlanReamController : ProcessMapPlanBaseController<ProcessMapPlanReam, ProcessMapPlanReamDto>
|
2024-02-21 15:08:51 +05:00
|
|
|
|
{
|
2024-06-04 16:55:44 +05:00
|
|
|
|
public ProcessMapPlanReamController(IChangeLogRepository<ProcessMapPlanReam, ProcessMapPlanReamDto, ProcessMapPlanBaseRequestWithWell> repository,
|
2024-02-21 15:08:51 +05:00
|
|
|
|
IWellService wellService,
|
2024-03-14 10:30:25 +05:00
|
|
|
|
ProcessMapPlanReamParser parserService,
|
2024-05-17 16:40:31 +05:00
|
|
|
|
ITelemetryService telemetryService,
|
2024-03-14 10:30:25 +05:00
|
|
|
|
ProcessMapPlanReamExportService processMapPlanExportService)
|
2024-05-17 16:40:31 +05:00
|
|
|
|
: base(repository, wellService, parserService, processMapPlanExportService, telemetryService)
|
2024-02-21 15:08:51 +05:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override string TemplateFileName => "ЕЦП_шаблон_файла_РТК_план_проработка.xlsx";
|
|
|
|
|
}
|