using AutoMapper; using Project.Application.DTOs.Incoming; using Project.Application.DTOs.Outgoing; using Project.Domain.Entities; namespace Project.Application.MappingProfiles { public class BasicDtoMappingProfile : Profile { public BasicDtoMappingProfile() { CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); } } }