Clean imported documents, first pass of Import form

This commit is contained in:
Jonathan Jenne
2021-12-20 16:39:23 +01:00
parent 3b0474e713
commit 9a3761acc0
27 changed files with 677 additions and 2135 deletions

View File

@@ -1,9 +1,14 @@
Imports DigitalData.Modules.Logging
Public Class Helpers
Inherits BaseClass
Private ReadOnly LogConfig As LogConfig
Private ReadOnly Logger As Logger
''' <summary>
''' This class needs to initialize the logger by itself!
''' </summary>
Public Sub New(pLogConfig As LogConfig)
MyBase.New(pLogConfig)
LogConfig = pLogConfig
Logger = pLogConfig.GetLogger
End Sub
End Class