2023-06-21 11:09:40 +10:00
|
|
|
|
using AutoMapper;
|
2023-08-10 10:14:41 +10:00
|
|
|
|
using PARR.DAL.Models.V1;
|
2023-06-21 11:09:40 +10:00
|
|
|
|
|
|
|
|
|
|
namespace PARR.API.MappingProfiles
|
|
|
|
|
|
{
|
|
|
|
|
|
public class DomainToDomainProfile : Profile
|
|
|
|
|
|
{
|
|
|
|
|
|
public DomainToDomainProfile()
|
|
|
|
|
|
{
|
2023-08-10 10:14:41 +10:00
|
|
|
|
CreateMap<V1_Job, V1_Job>();
|
2023-06-21 11:09:40 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|