This commit is contained in:
mmrbnjd
2025-08-16 01:20:42 +03:30
parent 029a10e1af
commit 86804a57f1
6 changed files with 204 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
using Common.Dtos.Company;
using Common.Dtos.Exper;
using Common.Dtos.Group;
using Common.Dtos.Prompt;
using Hushian.Domain.Entites;
@@ -17,6 +18,8 @@ namespace Hushian.Application
CreateMap<Exper, Read_ExperDto>().ReverseMap();
CreateMap<ADD_GroupDto, Group>();
CreateMap<Group, Read_GroupDto>();
CreateMap<ADD_PromptDto, Prompt>();
CreateMap<Prompt, ReadANDUpdate_PromptDto>().ReverseMap();
}
}
}