This commit is contained in:
Jonathan Jenne
2021-08-18 16:47:06 +02:00
parent 55e921eb21
commit 85eff9bfbe
22 changed files with 1078 additions and 302 deletions

View File

@@ -2,10 +2,10 @@
Imports AutoMapper
Imports AutoMapper.Configuration
Public Class Mapper
Public Class MapperFactory
Private Shared MapperConfig As Object
Public Shared Function GetMapper()
Public Shared Function GetMapper() As Mapper
MapperConfig = New MapperConfiguration(CreateMapperConfig())
MapperConfig.AssertConfigurationIsValid()
Return MapperConfig.CreateMapper()