You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
505 B
C#
18 lines
505 B
C#
using Volo.Abp.ObjectMapping;
|
|
|
|
namespace NPin.Framework.Mapster;
|
|
|
|
public class MapsterObjectMapper : IObjectMapper
|
|
{
|
|
public IAutoObjectMappingProvider AutoObjectMappingProvider => throw new NotImplementedException();
|
|
|
|
public TDestination Map<TSource, TDestination>(TSource source)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public TDestination Map<TSource, TDestination>(TSource source, TDestination destination)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |