PlayerManagement/Application/Profiles/DesertStormParticipantProfile.cs
Tomasi - Developing 35e83c4735 beta 0.0.3
2024-11-26 08:43:01 +01:00

19 lines
668 B
C#

using Application.DataTransferObjects.DesertStormParticipants;
using AutoMapper;
using Database.Entities;
namespace Application.Profiles;
public class DesertStormParticipantProfile : Profile
{
public DesertStormParticipantProfile()
{
CreateMap<DesertStormParticipant, DesertStormParticipantDto>()
.ForMember(des => des.PlayerName, opt => opt.MapFrom(src => src.Player.PlayerName));
CreateMap<CreateDesertStormParticipantDto, DesertStormParticipant>()
.ForMember(des => des.Id, opt => opt.MapFrom(src => Guid.CreateVersion7()));
CreateMap<UpdateDesertStormParticipantDto, DesertStormParticipant>();
}
}