- 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.
13 lines
364 B
C#
13 lines
364 B
C#
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record ConfigDto(
|
|
string DocumentPath,
|
|
int SendingProfile,
|
|
string SignatureHost,
|
|
string ExternalProgramName,
|
|
string ExportPath,
|
|
string DocumentPathDmz,
|
|
string ExportPathDmz,
|
|
string SignedMailPath,
|
|
string DocumentPathMoveAftsend);
|
|
} |