using AsbCloudApp.Data.ProcessMaps.Functions; using System.Collections.Generic; namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates; public class ProcessMapPlanStaticMeasurementOutputTemplate : ITemplateParameters { public string SheetName => "Выход статического замера"; public int HeaderRowsCount => 2; public string FileName => "ProcessMapPlanStaticMeasurementOutputTemplate.xlsx"; public IDictionary Cells => new Dictionary { { nameof(ProcessMapPlanStaticMeasurementOutputDto.Section), new Cell(1, typeof(string)) }, { nameof(ProcessMapPlanStaticMeasurementOutputDto.DepthStart), new Cell(2, typeof(double)) }, { nameof(ProcessMapPlanStaticMeasurementOutputDto.DepthEnd), new Cell(3, typeof(double)) }, { nameof(ProcessMapPlanStaticMeasurementOutputDto.SignalWaitingTime), new Cell(4, typeof(double)) }, { nameof(ProcessMapPlanStaticMeasurementOutputDto.Note), new Cell(5, typeof(string)) }, }; }