DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/ExcelServices/Templates/ProcessMapPlanTemplates/ProcessMapPlanAutoHoldTFTemplate.cs
2024-07-08 13:09:13 +05:00

24 lines
936 B
C#

using AsbCloudApp.Data.ProcessMaps.Functions;
using System.Collections.Generic;
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
public class ProcessMapPlanAutoHoldTFTemplate : ITemplateParameters
{
public string SheetName => "Автоудержание TF";
public int HeaderRowsCount => 2;
public string FileName => "ProcessMapPlanAutoHoldTF.xlsx";
public IDictionary<string, Cell> Cells => new Dictionary<string, Cell>
{
{ nameof(ProcessMapPlanAutoHoldTFDto.Section), new Cell(1, typeof(string)) },
{ nameof(ProcessMapPlanAutoHoldTFDto.DepthStart), new Cell(2, typeof(double)) },
{ nameof(ProcessMapPlanAutoHoldTFDto.DepthEnd), new Cell(3, typeof(double)) },
{ nameof(ProcessMapPlanAutoHoldTFDto.ZenithAngle), new Cell(4, typeof(double)) },
{ nameof(ProcessMapPlanAutoHoldTFDto.Note), new Cell(5, typeof(string)) },
};
}