16 lines
311 B
C#
16 lines
311 B
C#
|
|
using AutoMapper;
|
|||
|
|
using Sozsoft.Platform.Entities;
|
|||
|
|
using Sozsoft.Platform.Hr;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Intranet;
|
|||
|
|
|
|||
|
|
public class HrAutoMapperProfile : Profile
|
|||
|
|
{
|
|||
|
|
public HrAutoMapperProfile()
|
|||
|
|
{
|
|||
|
|
CreateMap<Department, DepartmentDto>();
|
|||
|
|
CreateMap<JobPosition, JobPositionDto>();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|