You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
620 B
24 lines
620 B
Imports System.Xml
|
|
|
|
Public MustInherit Class DocumentsDetermination
|
|
Implements Determination
|
|
|
|
Public MustOverride Function Render() As Boolean Implements Determination.Render
|
|
|
|
Public Property Contract As XmlDocument
|
|
''' <summary>
|
|
''' Connection String für die EDOKA Datenbank
|
|
''' </summary>
|
|
''' <returns></returns>
|
|
Public Property ConnectionString As String
|
|
Public Property Items As List(Of EdokaDokument)
|
|
|
|
Public Property Results As List(Of Result)
|
|
|
|
Public Sub New()
|
|
Items = New List(Of EdokaDokument)
|
|
Results = New List(Of Result)
|
|
End Sub
|
|
|
|
End Class
|