sozsoft-platform/api/src/Sozsoft.Platform.Application/Hr/HrAutoMapperProfile.cs
2026-05-05 20:59:30 +03:00

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>();
}
}