18 lines
446 B
C#
18 lines
446 B
C#
using AutoMapper;
|
|
using PARR.Domain.DTOs.Shared;
|
|
using PARR.Domain.Entities.JobGroupEntities;
|
|
|
|
namespace PARR.Core.Infrastructure.Mapping.Shared
|
|
{
|
|
public class JobGroupResultMappingProfile: Profile
|
|
{
|
|
public JobGroupResultMappingProfile()
|
|
{
|
|
CreateMap<JobGroup, JobGroupShortResult>()
|
|
.Include<JobGroup, JobGroupResult>();
|
|
|
|
CreateMap<JobGroup, JobGroupResult>();
|
|
}
|
|
}
|
|
}
|