EDMIService: Refactor service so that cron job details a read from database on every job run

This commit is contained in:
Jonathan Jenne
2020-12-21 16:40:40 +01:00
parent 1e3f508b1f
commit 227ff3fcbb
6 changed files with 155 additions and 86 deletions

View File

@@ -1,6 +1,12 @@
Public Class JobResult
Public Table As DataTable
Public ChildTable As DataTable
Public TableRelationColumn As String
Public ChildRelationColumn As String
Public Tables As New List(Of ResultTable)
Public Class ResultTable
Public Table As DataTable
Public ChildTable As DataTable
Public TableRelationColumn As String
Public ChildRelationColumn As String
Public DetailRow As DataRow
End Class
End Class