public static IEnumerable <Asset> GetAssets(this IRecordsManagerClient rmClient, Guid?parentId = null)
        {
            var page = rmClient.GetAssets(0, 0, parentId);

            return(page.Items);
        }