Files
Hushian/Hushian.Application/MappingProfile.cs
mmrbnjd 87d2360b32 ...
2025-07-03 16:05:44 +03:30

19 lines
328 B
C#

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(); ;
}
}