Added mapper

This commit is contained in:
2024-08-23 20:09:41 +03:00
parent e857cca2cf
commit c92855e7ce
9 changed files with 93 additions and 79 deletions

View File

@@ -0,0 +1,14 @@
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);
}
}
}