using AutoMapper; using Volo.Abp.AutoMapper; using Win_in.Sfs.Label.Application.Contracts; using Win_in.Sfs.Label.Domain; namespace Win_in.Sfs.Label.Application; public class PalletCodeAutoMapperProfile : Profile { public PalletCodeAutoMapperProfile() { CreateMap() .ReverseMap(); CreateMap(); } }