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 => "ProcessMapPlanAutoHoldTFTemplate.xlsx"; public IDictionary Cells => new Dictionary { { 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)) }, }; }