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 SerialCodeAutoMapperProfile : Profile { public SerialCodeAutoMapperProfile() { CreateMap() .IgnoreAuditedObjectProperties() .ReverseMap(); CreateMap(); } }