WIP: refactor
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user