Projektdateien hinzufügen.

This commit is contained in:
Jonathan Jenne
2021-08-04 16:16:12 +02:00
parent 6820d29618
commit a32b87ca6b
31 changed files with 2798 additions and 0 deletions

11
EDIDocumentImport/Base.vb Normal file
View File

@@ -0,0 +1,11 @@
Imports DigitalData.Modules.Logging
Public Class Base
Public ReadOnly LogConfig As LogConfig
Public ReadOnly Logger As Logger
Public Sub New(pLogConfig As LogConfig, pLogger As Logger)
LogConfig = pLogConfig
Logger = pLogger
End Sub
End Class