retroactiune/Retroactiune.WebAPI/MappingProfile.cs

15 lines
No EOL
374 B
C#

using AutoMapper;
using Retroactiune.Core.Entities;
using Retroactiune.DataTransferObjects;
namespace Retroactiune
{
public class MappingProfile : Profile
{
public MappingProfile()
{
CreateMap<FeedbackReceiver, FeedbackReceiverInDto>().ReverseMap();
CreateMap<FeedbackReceiver, FeedbackReceiverOutDto>();
}
}
}