Merge pull request '#20180716 Импорт плановой траектории работает не корректно' (#108) from fix/trajectory into dev

Reviewed-on: http://test.digitaldrilling.ru:8080/DDrilling/AsbCloudServer/pulls/108
This commit is contained in:
Никита Фролов 2023-09-21 15:01:22 +05:00
commit 790f4eef0d
2 changed files with 5 additions and 1 deletions

View File

@ -167,7 +167,11 @@ namespace AsbCloudInfrastructure.Services.Trajectory
{ {
parseErrors.Add(ex.Message); parseErrors.Add(ex.Message);
} }
}; }
if (parseErrors.Any())
throw new FileFormatException(string.Join("\r\n", parseErrors));
return trajectoryRows; return trajectoryRows;
} }