15 lines
311 B
C#
15 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>();
|
|
}
|
|
}
|
|
|