namespace View_by_Distance.Map.Models.Stateless.Methods; public interface IMapLogic { Dictionary> TestStatic_GetIdToPersonKeys(Dictionary> personKeyToIds) => GetIdToPersonKeys(personKeyToIds); static Dictionary> GetIdToPersonKeys(Dictionary> personKeyToIds) => MapLogic.GetIdToPersonKeys(personKeyToIds); List TestStatic_GetFaces(List items) => GetFaces(items); static List GetFaces(List items) => MapLogic.GetFaces(items); Shared.Models.Mapping[] TestStatic_GetSelectedMappingCollection(List items) => GetSelectedMappingCollection(items); static Shared.Models.Mapping[] GetSelectedMappingCollection(List items) => MapLogic.GetSelectedMappingCollection(items); Shared.Models.Mapping[] TestStatic_GetSelectedMappingCollection(List faces) => GetSelectedMappingCollection(faces); static Shared.Models.Mapping[] GetSelectedMappingCollection(List faces) => MapLogic.GetSelectedMappingCollection(faces); Dictionary> TestStatic_GetIdToWholePercentagesToFace(Shared.Models.Mapping[] mappingCollection) => GetIdToWholePercentagesToFace(mappingCollection); static Dictionary> GetIdToWholePercentagesToFace(Shared.Models.Mapping[] mappingCollection) => MapLogic.GetIdToWholePercentagesToFace(mappingCollection); List<(string, long)> TestStatic_GetJLinkDirectories(string genealogicalDataCommunicationFile, string[] jLinks, string personBirthdayFormat, char[] personCharacters, string a2PeopleSingletonDirectory, string a2PeopleContentDirectory) => GetJLinkDirectories(genealogicalDataCommunicationFile, jLinks, personBirthdayFormat, personCharacters, a2PeopleSingletonDirectory, a2PeopleContentDirectory); static List<(string, long)> GetJLinkDirectories(string genealogicalDataCommunicationFile, string[] jLinks, string personBirthdayFormat, char[] personCharacters, string a2PeopleSingletonDirectory, string a2PeopleContentDirectory) => MapLogic.GetJLinkDirectories(genealogicalDataCommunicationFile, jLinks, personBirthdayFormat, personCharacters, a2PeopleSingletonDirectory, a2PeopleContentDirectory); }