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