SegmentB, personKey,

personKeyFormatted and Sorting
This commit is contained in:
2022-09-01 01:18:08 -07:00
parent d4c950e8e3
commit 73de1070b8
17 changed files with 847 additions and 573 deletions

View File

@ -37,6 +37,21 @@ internal abstract class Face
return jsonElements;
}
internal static List<Models.Sorting> GetSortingCollection(Models.Face face)
{
List<Models.Sorting> results = new();
Models.Sorting sorting;
if (face.FaceNumbers is not null)
{
foreach (int[] numbers in face.FaceNumbers)
{
sorting = Sorting.Get(numbers);
results.Add(sorting);
}
}
return results;
}
private static List<Models.Face> GetFaces(string jsonFileFullName, int? maximum)
{
List<Models.Face> results = new();