Files
Hushian/Hushian.Application/MappingProfile.cs
mmrbnjd e15790488e group
2025-07-05 14:17:54 +03:30

23 lines
512 B
C#

using AutoMapper;
using Common.Dtos.Company;
using Common.Dtos.Exper;
using Common.Dtos.Group;
using Hushian.Domain.Entites;
namespace Hushian.Application
{
public class MappingProfile : Profile
{
public MappingProfile(/*IUserService userService*/)
{
CreateMap<Company,ReadANDUpdate_CompanyDto>();
CreateMap<Exper, Read_ExperDto>().ReverseMap();
CreateMap<ADD_GroupDto, Group>();
CreateMap<Group, Read_GroupDto>();
}
}
}