This commit is contained in:
Developer01
2026-07-07 17:00:11 +02:00
parent 36c3a055e3
commit 0e31f5c8e3
4 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ Public Class ADSyncJob
MyBase.New(LogConfig, MSSQL)
End Sub
Public Sub Start(Arguments As ADSyncArgs) Implements IJob(Of ADSyncArgs).Start
Public Sub Start(Arguments As ADSyncArgs) Implements IJob(Of ADSyncArgs).StartDexAPISQL
Dim oJobName As String = [GetType]().Name
Try

View File

@@ -13,7 +13,7 @@ Public Class API_DEXSQLJob
MyBase.New(LogConfig, MSSQL)
End Sub
Public Sub StartDex_API(Arguments As APISQLArgs) Implements IJob(Of APISQLArgs).Start
Public Sub StartDexAPISQL(Arguments As APISQLArgs) Implements IJob(Of APISQLArgs).StartDexAPISQL
Dim oJobName As String = [GetType]().Name
Try

View File

@@ -21,7 +21,7 @@ Public Class GraphQLJob
MyBase.New(LogConfig, MSSQL)
End Sub
Public Sub Start(Args As GraphQLArgs) Implements IJob(Of GraphQLArgs).Start
Public Sub Start(Args As GraphQLArgs) Implements IJob(Of GraphQLArgs).StartDexAPISQL
Try
Dim oConfigPath As String = Args.QueryConfigPath
Dim oConfigManager As New ConfigManager(Of GraphQLConfig)(_LogConfig, oConfigPath)

View File

@@ -3,7 +3,7 @@
End Interface
Public Interface IJob(Of T)
Sub Start(Arguments As T)
Sub StartDexAPISQL(Arguments As T)
Function ShouldStart(Arguments As T) As Boolean
End Interface