fix
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using AutoMapper;
|
||||
|
||||
namespace MyOffice.Services.Mapper;
|
||||
|
||||
public class BaseProfile<TSource, TDestination> : Profile
|
||||
{
|
||||
protected IMappingExpression<TSource, TDestination> Mapping;
|
||||
|
||||
public BaseProfile()
|
||||
{
|
||||
Mapping = CreateMap<TSource, TDestination>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user