public static IEnumerable <Location> GetLocationsByParentId(this IRecordsManagerClient rmClient, long?parentId = null)
        {
            var paged = rmClient.GetLocationsByParentId(0, 0, parentId);

            return(paged.Items);
        }