using System.Collections.Generic; using AsbCloudApp.Data.ProcessMaps; namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.ProcessMapPlanTemplates; public class ProcessMapPlanSubsystemsTemplate : ITemplateParameters { public string SheetName => "Использование систем"; public int HeaderRowsCount => 2; public string FileName => "ProcessMapPlanSubsystems.xlsx"; public IDictionary Cells => new Dictionary { { nameof(ProcessMapPlanSubsystemsDto.Section), new Cell(1, typeof(string)) }, { nameof(ProcessMapPlanSubsystemsDto.DepthStart), new Cell(2, typeof(double)) }, { nameof(ProcessMapPlanSubsystemsDto.DepthEnd), new Cell(3, typeof(double)) }, { nameof(ProcessMapPlanSubsystemsDto.AutoRotor), new Cell(4, typeof(double)) }, { nameof(ProcessMapPlanSubsystemsDto.AutoSlide), new Cell(5, typeof(double)) }, { nameof(ProcessMapPlanSubsystemsDto.AutoOscillation), new Cell(6, typeof(double)) }, { nameof(ProcessMapPlanSubsystemsDto.Note), new Cell(7, typeof(string)) } }; }