using Volo.Abp.ObjectMapping; namespace NPin.Framework.Mapster; public class MapsterObjectMapper : IObjectMapper { public IAutoObjectMappingProvider AutoObjectMappingProvider => throw new NotImplementedException(); public TDestination Map(TSource source) { throw new NotImplementedException(); } public TDestination Map(TSource source, TDestination destination) { throw new NotImplementedException(); } }