- 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.
14 lines
352 B
C#
14 lines
352 B
C#
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record EnvelopeReceiverDto(
|
|
int EnvelopeId,
|
|
int ReceiverId,
|
|
int Sequence,
|
|
string Name,
|
|
string JobTitle,
|
|
string CompanyName,
|
|
string PrivateMessage,
|
|
string AccessCode,
|
|
DateTime AddedWhen,
|
|
DateTime? ChangedWhen);
|
|
} |