Standardisierung der Struktur von Mapping-Profildateien

This commit is contained in:
2025-08-21 16:43:50 +02:00
parent fcf00171de
commit f42218802d
4 changed files with 14 additions and 12 deletions

View File

@@ -3,17 +3,17 @@ using EnvelopeGenerator.Application.Dto.Receiver;
using EnvelopeGenerator.Application.Envelopes.Commands;
using EnvelopeGenerator.Domain.Entities;
namespace EnvelopeGenerator.Application.EnvelopeReceivers.Commands;
namespace EnvelopeGenerator.Application.EnvelopeReceivers;
/// <summary>
///
/// </summary>
public class CreateEnvelopeReceiverMappingProfile : Profile
public class MappingProfile : Profile
{
/// <summary>
///
/// </summary>
public CreateEnvelopeReceiverMappingProfile()
public MappingProfile()
{
CreateMap<Envelope, CreateEnvelopeResponse>();
CreateMap<Receiver, ReceiverReadDto>();