Records: float => double
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user