public MigrationPartialExportResource PartialExport(MigrationPartialExportResource resource)
 {
     return(client.Post <MigrationPartialExportResource, MigrationPartialExportResource>(client.RootDocument.Link("MigrationsPartialExport"), resource));
 }
 public async Task <MigrationPartialExportResource> PartialExport(MigrationPartialExportResource resource)
 {
     return(await client.Post <MigrationPartialExportResource, MigrationPartialExportResource>(client.RootDocument.Link("MigrationsPartialExport"), resource).ConfigureAwait(false));
 }
 public MigrationPartialExportResource PartialExport(MigrationPartialExportResource resource)
 {
     return(repository.Client.Post <MigrationPartialExportResource, MigrationPartialExportResource>(repository.Link("MigrationsPartialExport"), resource));
 }
 public async Task <MigrationPartialExportResource> PartialExport(MigrationPartialExportResource resource)
 {
     return(await repository.Client.Post <MigrationPartialExportResource, MigrationPartialExportResource>(await repository.Link("MigrationsPartialExport").ConfigureAwait(false), resource).ConfigureAwait(false));
 }