9 lines
464 B
C#
9 lines
464 B
C#
public static class GcsContributorBuilder
|
|
{
|
|
public static List<ScoreContributor> Build(int eye, int verbal, int motor) => new()
|
|
{
|
|
new() { Parameter = "Eye", Points = eye, RawValue = eye.ToString(), NormalRange = "4" },
|
|
new() { Parameter = "Verbal", Points = verbal, RawValue = verbal.ToString(), NormalRange = "5" },
|
|
new() { Parameter = "Motor", Points = motor, RawValue = motor.ToString(), NormalRange = "6" },
|
|
};
|
|
} |