using AutoMapper; using PowderCoating.Application.DTOs.ShopWorker; using PowderCoating.Core.Entities; namespace PowderCoating.Application.Mappings; public class ShopWorkerProfile : Profile { public ShopWorkerProfile() { // Entity to DTO CreateMap(); // DTO to Entity CreateMap(); CreateMap(); // Reverse mappings CreateMap(); CreateMap(); CreateMap(); } }