This commit is contained in:
mmrbnjd
2025-07-05 14:17:54 +03:30
parent 23043dd094
commit e15790488e
7 changed files with 149 additions and 12 deletions

View File

@@ -1,5 +1,7 @@
using AutoMapper;
using Common.Dtos.Company;
using Common.Dtos.Exper;
using Common.Dtos.Group;
using Hushian.Domain.Entites;
@@ -11,8 +13,10 @@ namespace Hushian.Application
public MappingProfile(/*IUserService userService*/)
{
CreateMap<ReadANDUpdate_CompanyDto, Company>().ReverseMap(); ;
CreateMap<Company,ReadANDUpdate_CompanyDto>();
CreateMap<Exper, Read_ExperDto>().ReverseMap();
CreateMap<ADD_GroupDto, Group>();
CreateMap<Group, Read_GroupDto>();
}
}
}