Where should one place the Mapping profiler class? In the Data access layer folder? Business Service Layer folder? In the controller folder?
public class MappingProfile : Profile {
public MappingProfile() {
// Add as many of these lines as you need to map your objects
CreateMap<User, UserDto>();
CreateMap<UserDto, User>();
}
}