retroactiune/Retroactiune.WebAPI/MappingProfile.cs

14 lines
327 B
C#
Raw Normal View History

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