25 lines
666 B
C#
25 lines
666 B
C#
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, TDestination>(TSource source)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public TDestination Map<TSource, TDestination>(TSource source, TDestination destination)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|