- Notwendige Repositories, Services und DTOs für jede Entität, die SQL-Tabellen entspricht, unter Verwendung der WebCore-Bibliothek erstellt. - Mapping-Profile für effiziente Datentransformation definiert. - Dependency Injections für Repositories und Services als scoped konfiguriert, um eine korrekte Lebenszyklusverwaltung zu gewährleisten.
10 lines
241 B
C#
10 lines
241 B
C#
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record EnvelopeHistoryDto(
|
|
long Guid,
|
|
int EnvelopeId,
|
|
string UserReference,
|
|
int Status,
|
|
DateTime AddedWhen,
|
|
DateTime? ActionDate);
|
|
} |