This commit is contained in:
mmrbnjd
2025-07-03 16:05:44 +03:30
parent bc65878608
commit 87d2360b32
8 changed files with 338 additions and 51 deletions

View File

@@ -0,0 +1,18 @@
using AutoMapper;
using Common.Dtos.Company;
using Hushian.Domain.Entites;
namespace Hushian.Application
{
public class MappingProfile : Profile
{
public MappingProfile(/*IUserService userService*/)
{
CreateMap<ReadANDUpdate_CompanyDto, Company>().ReverseMap(); ;
}
}