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_GetIdToNormalizedRectangleToFace(Shared.Models.Mapping[] mappingCollection) => GetIdToNormalizedRectangleToFace(mappingCollection); static Dictionary> GetIdToNormalizedRectangleToFace(Shared.Models.Mapping[] mappingCollection) => MapLogic.GetIdToNormalizedRectangleToFace(mappingCollection); }