21 lines
841 B
VB.net
21 lines
841 B
VB.net
Imports DigitalData.Modules.Logging
|
|
Public Class frmAdmin_IDBStore
|
|
Implements IAdminForm
|
|
Public Property PrimaryKey As Integer Implements IAdminForm.PrimaryKey
|
|
Public Property HasChanges As Boolean Implements IAdminForm.HasChanges
|
|
Public Property IsInsert As Boolean Implements IAdminForm.IsInsert
|
|
|
|
Public Sub New(PrimaryKey As Integer, Optional IsInsert As Boolean = False)
|
|
' Dieser Aufruf ist für den Designer erforderlich.
|
|
InitializeComponent()
|
|
|
|
' Fügen Sie Initialisierungen nach dem InitializeComponent()-Aufruf hinzu.
|
|
'InitializeBaseForm(My.LogConfig)
|
|
Me.PrimaryKey = PrimaryKey
|
|
Me.IsInsert = IsInsert
|
|
End Sub
|
|
|
|
Public Function DeleteData() As Boolean Implements IAdminForm.DeleteData
|
|
Throw New NotImplementedException()
|
|
End Function
|
|
End Class |