EDMI: Add CheckInOutFile Method

This commit is contained in:
Jonathan Jenne
2022-03-25 16:06:00 +01:00
parent 13e2b6413b
commit 3dc62ae677
20 changed files with 564 additions and 64 deletions

View File

@@ -109,6 +109,12 @@ Public Class EDMIService
Return oGetFileObject.Run(pData)
End Function
Public Function CheckInOutFile(pData As CheckInOutFile.CheckInOutFileRequest) As CheckInOutFile.CheckInOutFileResponse Implements IEDMIService.CheckInOutFile
_Logger.Debug("Start of Method [CheckInOutFile]")
Dim oCheckInOutFile As New CheckInOutFile.CheckInOutFileMethod(LogConfig, MSSQL_IDB, MSSQL_ECM, GlobalState)
Return oCheckInOutFile.Run(pData)
End Function
#Region "=== Database ==="
Public Function GetCachedTables() As List(Of String) Implements IEDMIService.GetCachedTables