Builds the four-seam, three-write-path reference demo backend: case-framework (seam D stand-in), legacy-backend/frontend (SQL Server, seams A/B/C targets), and new-backend (Domain/Application/Infrastructure.*/Api implementing the source resolver, take/release-ownership, write-through translator, and owned assessment flow), wired together via docker-compose with a plain placeholder frontend standing in for the Angular portal until Session 2. All 11 Architecture.Tests pass and scripts/smoke.sh passes end-to-end against a fresh `docker compose up`, covering acceptance criteria 1-3 and 7-22. Fixes two real domain bugs found only once the stack ran for real: the BSN eleven-proof checksum trivially passes all-zero digits, and the adoption mapper silently treated a partial legacy address as absent instead of failing loudly. Also fixes several environment-specific integration issues (rootless Podman/SELinux bind-mount permissions, a buildah NuGet layer-caching bug, SqlClient's invariant-globalization incompatibility, and an nginx path-prefix mismatch for the legacy frontend). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
namespace Legacy.Api.Data;
|
|
|
|
/// <summary>
|
|
/// Maps to dbo.AANVR. Property names deliberately mirror the legacy column
|
|
/// vocabulary (abbreviated Dutch) rather than modern domain terms - that
|
|
/// translation is the downstream anti-corruption layer's job, not ours.
|
|
/// </summary>
|
|
public class Aanvraag
|
|
{
|
|
public int Id { get; set; }
|
|
public string Bsn { get; set; } = "";
|
|
public string Naam { get; set; } = "";
|
|
public string? Voorl { get; set; }
|
|
public string? AdresStr { get; set; }
|
|
public string? AdresNr { get; set; }
|
|
public string? AdresPc { get; set; }
|
|
public string? AdresPl { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? Telnr { get; set; }
|
|
public string CorrKanaal { get; set; } = "P";
|
|
public string StatCd { get; set; } = "O";
|
|
public string? DiplCd { get; set; }
|
|
public string? DiplLand { get; set; }
|
|
public DateOnly? DiplDat { get; set; }
|
|
public DateOnly DatOntv { get; set; }
|
|
public DateOnly? DatBeoord { get; set; }
|
|
public string? BeoordRes { get; set; }
|
|
public string? BeoordMotiv { get; set; }
|
|
public bool Migrated { get; set; }
|
|
public DateTime MutDat { get; set; }
|
|
public string MutUser { get; set; } = "seed";
|
|
}
|