Improve Main form performance

This commit is contained in:
Jonathan Jenne
2021-12-06 10:23:37 +01:00
parent 52ac886c1f
commit 51c053769e
5 changed files with 46 additions and 10 deletions

View File

@@ -3,9 +3,11 @@
Public Class BaseClass
Public ReadOnly LogConfig As LogConfig
Public ReadOnly Logger As Logger
Public ReadOnly Helpers As Helpers
Public Sub New(pLogConfig As LogConfig)
LogConfig = pLogConfig
Logger = LogConfig.GetLogger()
Helpers = New Helpers(pLogConfig)
End Sub
End Class