create CreateUserCommand with handler and mapping profile

This commit is contained in:
2025-08-29 14:31:36 +02:00
parent 777f20eddb
commit a7f6b94d20
4 changed files with 125 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
using AutoMapper;
using DigitalData.UserManager.Domain.Entities;
using EnvelopeGenerator.Application.Users.Commands;
namespace EnvelopeGenerator.Application.Users;
/// <summary>
///
/// </summary>
public class MappingProfile : Profile
{
/// <summary>
///
/// </summary>
public MappingProfile()
{
CreateMap<CreateUserCommand, User>();
}
}