DD.WellWorkover.Cloud/AsbCloudInfrastructure/Services/ExcelServices/Templates/ProcessMapPlanTemplates/ProcessMapPlanAutoHoldTFTemplate.cs

24 lines
944 B
C#
Raw Normal View History

using AsbCloudApp.Data.ProcessMaps.Functions;
using System.Collections.Generic;
namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates;
2024-06-29 21:32:53 +05:00
public class ProcessMapPlanAutoHoldTFTemplate : ITemplateParameters
{
2024-06-29 21:32:53 +05:00
public string SheetName => "Автоудержание TF";
public int HeaderRowsCount => 2;
2024-06-29 21:32:53 +05:00
public string FileName => "ProcessMapPlanAutoHoldTFTemplate.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)) },
};
}