From 8d511ec81a0e53cad336b6dd80fb50e205fa5a78 Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 15 Apr 2026 14:33:54 +0200 Subject: [PATCH] Add BatchId property to ResultView class Added the BatchId property to the ResultView class, mapping it to the "BATCH_ID" column in the database. This property is of type string? and allows tracking of batch identifiers in result records. --- src/ReC.Domain/Views/ResultView.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ReC.Domain/Views/ResultView.cs b/src/ReC.Domain/Views/ResultView.cs index 7e96d39..1af9064 100644 --- a/src/ReC.Domain/Views/ResultView.cs +++ b/src/ReC.Domain/Views/ResultView.cs @@ -54,6 +54,9 @@ public class ResultView [Column("RESULT_ERROR")] public string? Error { get; set; } + [Column("BATCH_ID")] + public string? BatchId { get; set; } + [Column("REFERENCE1")] public string? Reference1 { get; set; }