feat (EnvelopeReceiverReadOnly): Erstellt „EnvelopeReceiverReadOnlyService“ als Implementierung von „CRUDService“ und „IEnvelopeReceiverReadOnlyService-interface“

This commit is contained in:
Developer 02
2024-09-30 15:02:52 +02:00
parent a103f34230
commit ad26230da5
3 changed files with 30 additions and 2 deletions

View File

@@ -1,9 +1,11 @@
namespace EnvelopeGenerator.Application.DTOs.EnvelopeReceiverReadOnly
using DigitalData.Core.Abstractions;
namespace EnvelopeGenerator.Application.DTOs.EnvelopeReceiverReadOnly
{
public record EnvelopeReceiverReadOnlyUpdateDto(
long Id,
DateTime DateValid,
string ChangedWho)
string ChangedWho) : IUnique<long>
{
public DateTime ChangedWhen { get; } = DateTime.Now;
};