Files
myoffice/MyOffice.Services/Mapper/BaseProfile.cs
T
2023-12-01 20:47:42 +02:00

14 lines
257 B
C#

using AutoMapper;
namespace MyOffice.Services.Mapper;
public class BaseProfile<TSource, TDestination> : Profile
{
protected IMappingExpression<TSource, TDestination> Mapping;
public BaseProfile()
{
Mapping = CreateMap<TSource, TDestination>();
}
}