public static IClientPagedItems <Asset> GetAllAssets(this IRecordsManagerClient rmClient, int page, int pageSize)
 {
     return(rmClient.Get <ClientPagedItems <Asset> >(GET_ASSETS_ALL.FormatResourceUrl(page, pageSize)));
 }
 public static string GetAllAssetsAsJson(this IRecordsManagerClient rmClient, int page, int pageSize)
 {
     return(rmClient.Get(GET_ASSETS_ALL.FormatResourceUrl(page, pageSize)));
 }