using AutoMapper; using UserManagement.Data; using UserManagement.Data.Dto; using UserManagement.MediatR.Commands; namespace UserManagement.API.Helpers.Mapping { public class ActionProfile : Profile { public ActionProfile() { CreateMap().ReverseMap(); CreateMap(); CreateMap(); } } }