Records: float => double

This commit is contained in:
Michał Zieliński
2024-03-09 08:53:47 +01:00
parent f9c1a8a8ad
commit fbcb46046e
7 changed files with 58 additions and 60 deletions

View File

@@ -31,7 +31,7 @@ namespace WebAPI.dataParsers
for (int j = 1; j < data.Count; j++) {
if (data[j][0].Length > 0)
{
float value = float.Parse(data[j][i], CultureInfo.GetCultureInfo("pl-PL"));
double value = double.Parse(data[j][i], CultureInfo.GetCultureInfo("pl-PL"));
if (value > 0)
{
Record record = new Record();