15 lines
334 B
VB.net
15 lines
334 B
VB.net
Imports DigitalData.Modules.Logging
|
|
Imports EDIDocumentImport.DocumentInfo
|
|
|
|
Public Class DocumentLoader
|
|
Inherits Base
|
|
|
|
Public Sub New(pLogConfig As LogConfig)
|
|
MyBase.New(pLogConfig, pLogConfig.GetLogger())
|
|
End Sub
|
|
|
|
Public Sub LoadDocument(pDocument As Tuple(Of Object, DocumentType))
|
|
|
|
End Sub
|
|
End Class
|