Jobs: Remove firebird

This commit is contained in:
Jonathan Jenne
2024-01-23 13:40:22 +01:00
parent e85379dcf5
commit b38a88d5f9
3 changed files with 5 additions and 14 deletions

View File

@@ -4,13 +4,11 @@ Imports DigitalData.Modules.Logging
Public Class JobBase
Protected _LogConfig As LogConfig
Protected _Logger As Logger
Protected _Firebird As Firebird
Protected _MSSQL As MSSQLServer
Public Sub New(LogConfig As LogConfig, Firebird As Firebird, MSSQL As MSSQLServer)
Public Sub New(LogConfig As LogConfig, MSSQL As MSSQLServer)
_LogConfig = LogConfig
_Logger = LogConfig.GetLogger()
_Firebird = Firebird
_MSSQL = MSSQL
End Sub
End Class