From fb07d9151f843dd5858da9521a920781727c8e65 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 25 Aug 2025 15:20:29 +0200 Subject: [PATCH] add mapping profiles --- .../DocStatus/Commands/MappingProfile.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 EnvelopeGenerator.Application/DocStatus/Commands/MappingProfile.cs diff --git a/EnvelopeGenerator.Application/DocStatus/Commands/MappingProfile.cs b/EnvelopeGenerator.Application/DocStatus/Commands/MappingProfile.cs new file mode 100644 index 00000000..86e1ed06 --- /dev/null +++ b/EnvelopeGenerator.Application/DocStatus/Commands/MappingProfile.cs @@ -0,0 +1,21 @@ +using AutoMapper; +using EnvelopeGenerator.Domain.Entities; + +namespace EnvelopeGenerator.Application.DocStatus.Commands; + +/// +/// +/// +public class MappingProfile : Profile +{ + /// + /// + /// + public MappingProfile() + { + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + } +}