15 lines
392 B
VB.net
15 lines
392 B
VB.net
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
|