- 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.
19 lines
504 B
C#
19 lines
504 B
C#
using AutoMapper;
|
|
using EnvelopeGenerator.Application.DTOs;
|
|
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.Application.MappingProfiles
|
|
{
|
|
public class BasicDtoMappingProfile : Profile
|
|
{
|
|
public BasicDtoMappingProfile()
|
|
{
|
|
CreateMap<Config, ConfigDto>();
|
|
CreateMap<EnvelopeDocument, EnvelopeDocumentDto>();
|
|
|
|
CreateMap<ConfigDto, Config>();
|
|
CreateMap<EnvelopeDocumentDto, EnvelopeDocument>();
|
|
}
|
|
}
|
|
}
|