11 lines
323 B
C#
11 lines
323 B
C#
|
|
namespace NetinaShop.Domain;
|
|||
|
|
|
|||
|
|
public class MappingRegister : ICodeGenerationRegister
|
|||
|
|
{
|
|||
|
|
public void Register(CodeGenerationConfig config)
|
|||
|
|
{
|
|||
|
|
//config.AdaptTwoWays("[name]SDto", MapType.Map | MapType.MapToTarget | MapType.Projection)
|
|||
|
|
// .AlterType<ApplicationUser,ApplicationUserSDto>();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|