Add Update DTOs for partial entity updates in Procedures

Introduced six new DTO record classes under ReC.Application.Common.Procedures.UpdateProcedure.Dto to support partial (nullable) updates for Action, Endpoint, EndpointAuth, EndpointParams, Profile, and Result entities. These DTOs enable PATCH-like update operations by allowing selective property updates. No existing code was modified.
This commit is contained in:
2026-03-24 11:08:37 +01:00
parent f786192786
commit 114b5de71d
6 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
namespace ReC.Application.Common.Procedures.UpdateProcedure.Dto;
public record UpdateActionDto
{
public long? ProfileId { get; set; }
public bool? Active { get; set; }
public byte? Sequence { get; set; }
public long? EndpointId { get; set; }
public long? EndpointAuthId { get; set; }
public short? EndpointParamsId { get; set; }
public short? SqlConnectionId { get; set; }
public byte? TypeId { get; set; }
public string? PreSql { get; set; }
public string? HeaderSql { get; set; }
public string? BodySql { get; set; }
public string? PostSql { get; set; }
public byte? ErrorActionId { get; set; }
}

View File

@@ -0,0 +1,16 @@
namespace ReC.Application.Common.Procedures.UpdateProcedure.Dto;
public record UpdateEndpointAuthDto
{
public bool? Active { get; set; }
public string? Description { get; set; }
public byte? TypeId { get; set; }
public string? ApiKey { get; set; }
public string? ApiValue { get; set; }
public bool? ApiKeyAddToId { get; set; }
public string? Token { get; set; }
public string? Username { get; set; }
public string? Password { get; set; }
public string? Domain { get; set; }
public string? Workstation { get; set; }
}

View File

@@ -0,0 +1,8 @@
namespace ReC.Application.Common.Procedures.UpdateProcedure.Dto;
public record UpdateEndpointDto
{
public bool? Active { get; set; }
public string? Description { get; set; }
public string? Uri { get; set; }
}

View File

@@ -0,0 +1,11 @@
namespace ReC.Application.Common.Procedures.UpdateProcedure.Dto;
public record UpdateEndpointParamsDto
{
public bool? Active { get; set; }
public string? Description { get; set; }
public short? GroupId { get; set; }
public byte? Sequence { get; set; }
public string? Key { get; set; }
public string? Value { get; set; }
}

View File

@@ -0,0 +1,15 @@
namespace ReC.Application.Common.Procedures.UpdateProcedure.Dto;
public record UpdateProfileDto
{
public bool? Active { get; set; }
public byte? TypeId { get; set; }
public string? Mandantor { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public byte? LogLevelId { get; set; }
public short? LanguageId { get; set; }
public DateTime? FirstRun { get; set; }
public DateTime? LastRun { get; set; }
public string? LastResult { get; set; }
}

View File

@@ -0,0 +1,9 @@
namespace ReC.Application.Common.Procedures.UpdateProcedure.Dto;
public record UpdateResultDto
{
public long? ActionId { get; set; }
public short? StatusId { get; set; }
public string? Header { get; set; }
public string? Body { get; set; }
}