public static IEnumerable <Asset> GetAllAssets(this IRecordsManagerClient rmClient)
        {
            var page = rmClient.GetAllAssets(0, 0);

            return(page.Items);
        }