WIP: refactor

This commit is contained in:
Michał Zieliski
2024-06-18 19:53:52 +02:00
parent a0a228f86d
commit 7e8406dc9b
10 changed files with 245 additions and 255 deletions

View File

@@ -107,7 +107,7 @@ public static class ProcessHelper
break;
}
}
public static double? getValue(Record record, int number)
public static double? GetValue(Record record, int number)
{
return number switch
{
@@ -159,7 +159,7 @@ public static class ProcessHelper
break;
case 2:
{
for (int i = int.Parse(range[0]); i <= int.Parse(range[1]); i++)
for (var i = int.Parse(range[0]); i <= int.Parse(range[1]); i++)
{
codesList.Add(i);
}