Export report to Directory

This commit is contained in:
Jonathan Jenne
2021-11-30 12:17:26 +01:00
parent ad7e6a9c84
commit 436293cbb7
16 changed files with 166 additions and 161 deletions

View File

@@ -4,8 +4,8 @@ Public Class BaseClass
Public ReadOnly LogConfig As LogConfig
Public ReadOnly Logger As Logger
Public Sub New(pLogConfig As LogConfig, pLogger As Logger)
Public Sub New(pLogConfig As LogConfig)
LogConfig = pLogConfig
Logger = pLogger
Logger = LogConfig.GetLogger()
End Sub
End Class