- SQL-SELECT-Anweisungen in Dokumenten aktualisiert, um alle Spalten abzurufen.
- Prioritätsbehandlung für document_path_dmz in EnvelopeService.LoadEnvelopes hinzugefügt. - CRUD-Operationen in EnvlopeDocument und ConfigurationFile Services/Repositories unter Verwendung von WebCoreModules implementiert. - Verschiedene Dateimethoden in [spezifischen Orten oder Klassen, falls zutreffend] auf async umgestellt.
This commit is contained in:
15
EnvelopeGenerator.Application/DTOs/ConfigDto.cs
Normal file
15
EnvelopeGenerator.Application/DTOs/ConfigDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace EnvelopeGenerator.Application.DTOs
|
||||
{
|
||||
public record ConfigDto
|
||||
{
|
||||
public string DocumentPath { get; init; }
|
||||
public int SendingProfile { get; init; }
|
||||
public string SignatureHost { get; init; }
|
||||
public string ExternalProgramName { get; init; }
|
||||
public string ExportPath { get; init; }
|
||||
public string DocumentPathDmz { get; init; }
|
||||
public string ExportPathDmz { get; init; }
|
||||
public string SignedMailPath { get; init; }
|
||||
public string DocumentPathMoveAftsend { get; init; }
|
||||
}
|
||||
}
|
||||
12
EnvelopeGenerator.Application/DTOs/EnvelopeDocumentDto.cs
Normal file
12
EnvelopeGenerator.Application/DTOs/EnvelopeDocumentDto.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace EnvelopeGenerator.Application.DTOs
|
||||
{
|
||||
public record EnvelopeDocumentDto
|
||||
{
|
||||
public int Guid { get; init; }
|
||||
public int EnvelopeId { get; init; }
|
||||
public string Filename { get; init; }
|
||||
public string Filepath { get; init; }
|
||||
public DateTime AddedWhen { get; init; }
|
||||
public string FilenameOriginal { get; init; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user