Tested first run
This commit is contained in:
@ -73,18 +73,4 @@ internal class A2_People
|
||||
return results.ToArray();
|
||||
}
|
||||
|
||||
internal static Dictionary<string, Person> Convert(Person[] people)
|
||||
{
|
||||
Dictionary<string, Person> results = new();
|
||||
string personKey;
|
||||
foreach (Person person in people)
|
||||
{
|
||||
personKey = Shared.Models.Stateless.Methods.IPersonBirthday.GetFormatted(person.Birthday);
|
||||
if (results.ContainsKey(personKey))
|
||||
break;
|
||||
results.Add(personKey, person);
|
||||
}
|
||||
return results;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user