- 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.
11 lines
318 B
C#
11 lines
318 B
C#
using DigitalData.Core.Contracts.Application;
|
|
using DigitalData.Core.Contracts.Infrastructure;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.Infrastructure.Contracts
|
|
{
|
|
public interface IConfigRepository : ICRUDRepository<Config, int>
|
|
{
|
|
Task<Config?> ReadFirstAsync();
|
|
}
|
|
} |