Files
schengen-visa/SchengenVisaApi/Infrastructure/Automapper/Profiles/ApplicantProfile.cs
2024-08-23 20:09:41 +03:00

15 lines
337 B
C#

using ApplicationLayer.Services.Applicants.Models;
using AutoMapper;
using Domains.ApplicantDomain;
namespace Infrastructure.Automapper.Profiles
{
public class ApplicantProfile : Profile
{
public ApplicantProfile()
{
CreateMap<Applicant, ApplicantModel>(MemberList.Destination);
}
}
}