Zooflow: Add Active Directory User Import

This commit is contained in:
Jonathan Jenne
2022-03-07 15:51:27 +01:00
parent 4dec4be471
commit 6ffc699fb1
30 changed files with 1514 additions and 348 deletions

View File

@@ -1,7 +1,22 @@
Public Interface IAdminForm
''' <summary>
''' Used to deliver the primary key for loading an existing entity.
''' </summary>
Property PrimaryKey As Integer
''' <summary>
''' Did the user change one or more properties in this form?
''' </summary>
Property HasChanges As Boolean
''' <summary>
''' Is the user creating a new object or editing an existing one?
''' </summary>
''' <returns></returns>
Property IsInsert As Boolean
''' <summary>
''' Function to delete the currently openened object
''' </summary>
Function DeleteData() As Boolean
End Interface