using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.ObjectMapping; namespace Yi.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(); } } }