- 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.
21 lines
536 B
C#
21 lines
536 B
C#
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record DocumentReceiverElementDto(
|
|
int Guid,
|
|
int DocumentId,
|
|
int ReceiverId,
|
|
int ElementType,
|
|
float PositionX,
|
|
float PositionY,
|
|
float Width,
|
|
float Height,
|
|
int Page,
|
|
bool Required,
|
|
string Tooltip,
|
|
bool ReadOnly,
|
|
int AnnotationIndex,
|
|
DateTime AddedWhen,
|
|
DateTime? ChangedWhen,
|
|
EnvelopeDocumentDto? Document,
|
|
EnvelopeReceiverDto? Receiver);
|
|
} |