Change Info to short? and update DB param to pRESULT_INFO_ID

Changed UpdateResultDto.Info from string? to short? for type safety. Updated UpdateObjectProcedureHandler to use pRESULT_INFO_ID with SqlDbType.SmallInt, reflecting the new type.
This commit is contained in:
2026-04-15 11:46:40 +02:00
parent 2736a78d4f
commit cb5bbfb722
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ public record UpdateResultDto
public short? StatusId { get; set; }
public string? Header { get; set; }
public string? Body { get; set; }
public string? Info { get; set; }
public short? Info { get; set; }
public string? InfoDetail { get; set; }
public string? Error { get; set; }
public string? Reference1 { get; set; }