2024-07-01 17:02:18 +05:00
|
|
|
using AsbCloudApp.Data.ProcessMaps.Functions;
|
|
|
|
using AsbCloudApp.Data.ProcessMaps.Operations;
|
2024-06-25 15:48:24 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
|
|
|
|
|
2024-06-29 23:40:02 +05:00
|
|
|
public class ProcessMapPlanSwitchingOffThePumpTemplate : ITemplateParameters
|
2024-06-25 15:48:24 +05:00
|
|
|
{
|
|
|
|
public string SheetName => "Выключение насоса";
|
|
|
|
|
|
|
|
public int HeaderRowsCount => 2;
|
|
|
|
|
2024-07-08 13:09:13 +05:00
|
|
|
public string FileName => "ProcessMapPlanSwitchingOffThePump.xlsx";
|
2024-06-25 15:48:24 +05:00
|
|
|
|
|
|
|
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
|
|
|
|
{
|
2024-07-01 17:02:18 +05:00
|
|
|
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.Section), new Cell(1, typeof(string)) },
|
|
|
|
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.DepthStart), new Cell(2, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.DepthEnd), new Cell(3, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.Duration), new Cell(4, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.ResidualPressureLimit), new Cell(5, typeof(double)) },
|
|
|
|
{ nameof(ProcessMapPlanSwitchingOffThePumpDto.Note), new Cell(6, typeof(string)) },
|
2024-06-25 15:48:24 +05:00
|
|
|
};
|
|
|
|
}
|