using System.Collections.Generic; using AsbCloudApp.Data.Trajectory; namespace AsbCloudInfrastructure.Services.ExcelServices.Templates.TrajectoryTemplates; public class TrajectoryFactManualTemplate : ITemplateParameters { public string SheetName => "Фактическая траектория"; public int HeaderRowsCount => 2; public string FileName => "TrajectoryFactManualTemplate.xlsx"; public IDictionary Cells => new Dictionary { { nameof(TrajectoryGeoFactDto.WellboreDepth), new Cell(1, typeof(double)) }, { nameof(TrajectoryGeoFactDto.ZenithAngle), new Cell(2, typeof(double)) }, { nameof(TrajectoryGeoFactDto.AzimuthGeo), new Cell(3, typeof(double)) }, { nameof(TrajectoryGeoFactDto.AzimuthMagnetic), new Cell(4, typeof(double)) }, { nameof(TrajectoryGeoFactDto.VerticalDepth), new Cell(5, typeof(double)) }, { nameof(TrajectoryGeoFactDto.Comment), new Cell(6, typeof(string)) } }; }