using AutoMapper; using ECMJobRunner.Domain.Entities; namespace ECMJobRunner.Infrastructure.Mapping { /// /// AutoMapper profile for entity mappings /// public class EntityMappingProfile : Profile { /// /// Constructor configuring AutoMapper mappings for all entities /// public EntityMappingProfile() { // Note: object -> Entity mappings are intentionally removed // AutoMapper cannot map from object type due to reflection limitations // Callers should use explicit DTO types and create specific mappings // Example: CreateMap() in your own AutoMapper profile } } }