work on jobrunner

This commit is contained in:
Jonathan Jenne
2019-04-10 11:43:15 +02:00
parent 720618f29b
commit 2855cc6208
14 changed files with 103 additions and 54 deletions

14
Jobs/JobBase.vb Normal file
View File

@@ -0,0 +1,14 @@
Imports DigitalData.Modules.Database
Imports DigitalData.Modules.Logging
Public Class JobBase
Protected _LogConfig As LogConfig
Protected _Logger As Logger
Protected _Firebird As Firebird
Public Sub New(LogConfig As LogConfig, Firebird As Firebird)
_LogConfig = LogConfig
_Logger = LogConfig.GetLogger()
_Firebird = Firebird
End Sub
End Class