Files
Hushian/Hushian.Application/MappingProfile.cs

23 lines
512 B
C#
Raw Normal View History

2025-07-03 16:05:44 +03:30
using AutoMapper;
using Common.Dtos.Company;
2025-07-05 14:17:54 +03:30
using Common.Dtos.Exper;
using Common.Dtos.Group;
2025-07-03 16:05:44 +03:30
using Hushian.Domain.Entites;
namespace Hushian.Application
{
public class MappingProfile : Profile
{
public MappingProfile(/*IUserService userService*/)
{
2025-07-05 14:17:54 +03:30
CreateMap<Company,ReadANDUpdate_CompanyDto>();
CreateMap<Exper, Read_ExperDto>().ReverseMap();
CreateMap<ADD_GroupDto, Group>();
CreateMap<Group, Read_GroupDto>();
}
2025-07-03 16:05:44 +03:30
}
}