using System.Collections.Generic; using AsbCloudApp.Data.Trajectory; using AsbCloudInfrastructure.Services.Parser; namespace AsbCloudInfrastructure.Services.Trajectory.Parser; public class TrajectoryFactManualParser : ParserExcelService { protected override string SheetName => "Фактическая траектория"; protected override int HeaderRowsCount => 2; protected override string TemplateFileName => "TrajectoryFactManualTemplate.xlsx"; protected override 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)) } }; }