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

@@ -0,0 +1,21 @@
Imports System.Runtime.Serialization
Namespace Methods.IDB.CheckInOutFile
<Serializable>
<DataContract>
Public Class CheckInOutFileResponse
Inherits Messages.BaseResponse
<DataMember>
Public Property ObjectId As Long
Public Sub New(pObjectId As Long)
MyBase.New()
ObjectId = pObjectId
End Sub
Public Sub New(pException As Exception, Optional pDetails As String = "")
MyBase.New(pException, pDetails)
End Sub
End Class
End Namespace