sozsoft-platform/api/src/Sozsoft.Platform.Application/Hr/HrAutoMapperProfile.cs

16 lines
311 B
C#
Raw Normal View History

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